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

22 lines
485 B
Ruby
Raw Normal View History

require 'spec_helper'
shared_examples 'default query config' do
2016-11-18 02:13:34 -05:00
let(:event) { described_class.new(project: double, options: {}) }
it 'has the start attributes' do
2016-11-18 02:13:34 -05:00
expect(event.start_time_attrs).not_to be_nil
end
2016-11-17 08:14:23 -05:00
it 'has the stage attribute' do
2016-11-18 02:13:34 -05:00
expect(event.stage).not_to be_nil
2016-11-17 08:14:23 -05:00
end
it 'has the end attributes' do
2016-11-18 02:13:34 -05:00
expect(event.end_time_attrs).not_to be_nil
end
it 'has the projection attributes' do
2016-11-18 02:13:34 -05:00
expect(event.projections).not_to be_nil
end
end