gitlab-org--gitlab-foss/spec/lib/gitlab/cycle_analytics/test_event_fetcher_spec.rb

14 lines
277 B
Ruby
Raw Normal View History

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Gitlab::CycleAnalytics::TestEventFetcher do
2016-11-23 10:28:28 +00:00
let(:stage_name) { :test }
2016-11-18 07:13:34 +00:00
it_behaves_like 'default query config' do
it 'has a default order' do
expect(event.order).not_to be_nil
2016-11-18 07:13:34 +00:00
end
end
end