Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test_event_spec.rb « cycle_analytics « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e249db69fc6832d68e1c4e807141b088fc249bc7 (plain)
1
2
3
4
5
6
7
8
9
10
require 'spec_helper'
require 'lib/gitlab/cycle_analytics/shared_event_spec'

describe Gitlab::CycleAnalytics::TestEvent do
  it_behaves_like 'default query config' do
    it 'does not have the default order' do
      expect(event.order).not_to eq(event.start_time_attrs)
    end
  end
end