summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/cycle_analytics/plan_event_fetcher_spec.rb
blob: 17786cd02c6d6ed0eb1637d38be9bbda490a5f8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

require 'spec_helper'
require 'lib/gitlab/cycle_analytics/shared_event_spec'

describe Gitlab::CycleAnalytics::PlanEventFetcher do
  let(:stage_name) { :plan }

  it_behaves_like 'default query config' do
    context 'no commits' do
      it 'does not blow up if there are no commits' do
        allow(event).to receive(:event_result).and_return([{}])

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