summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/cycle_analytics/plan_event_spec.rb
blob: 4a5604115ec91614d60830a21555710e4b173940 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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

    context 'no commits' do
      it 'does not blow up if there are no commits' do
        allow_any_instance_of(Gitlab::CycleAnalytics::EventsQuery).to receive(:execute).and_return([{}])

        expect { event.fetch }.not_to raise_error
      end
    end
  end
end