debian-mirror-gitlab/spec/lib/gitlab/cycle_analytics/shared_event_spec.rb
2017-08-17 22:00:37 +05:30

14 lines
387 B
Ruby

require 'spec_helper'
shared_examples 'default query config' do
let(:project) { create(:empty_project) }
let(:event) { described_class.new(project: project, stage: stage_name, options: { from: 1.day.ago }) }
it 'has the stage attribute' do
expect(event.stage).not_to be_nil
end
it 'has the projection attributes' do
expect(event.projections).not_to be_nil
end
end