gitlab-org--gitlab-foss/spec/lib/gitlab/cycle_analytics/plan_event_spec.rb
2016-11-18 08:13:34 +01:00

10 lines
276 B
Ruby

require 'spec_helper'
require 'lib/gitlab/cycle_analytics/shared_event_spec'
describe Gitlab::CycleAnalytics::PlanEvent do
it_behaves_like 'default query config' do
it 'has the default order' do
expect(event.order).to eq(event.start_time_attrs)
end
end
end