2019-07-25 01:21:37 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-11-16 06:01:10 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
shared_examples 'default query config' do
|
2017-08-02 15:55:11 -04:00
|
|
|
let(:project) { create(:project) }
|
2019-07-04 10:42:31 -04:00
|
|
|
let(:event) { described_class.new(stage: stage_name, options: { from: 1.day.ago, project: project }) }
|
2016-11-18 02:13:34 -05:00
|
|
|
|
2016-11-17 08:14:23 -05:00
|
|
|
it 'has the stage attribute' do
|
2016-12-09 09:23:09 -05:00
|
|
|
expect(event.stage).not_to be_nil
|
2016-11-17 08:14:23 -05:00
|
|
|
end
|
|
|
|
|
2016-11-16 06:01:10 -05:00
|
|
|
it 'has the projection attributes' do
|
2016-11-18 02:13:34 -05:00
|
|
|
expect(event.projections).not_to be_nil
|
2016-11-16 06:01:10 -05:00
|
|
|
end
|
|
|
|
end
|