summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/analytics/cycle_analytics/stage_events/stage_event_spec.rb
blob: b05faf5d813e5aa18bf230eafe37c540ea6c4f89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

require 'spec_helper'

describe Gitlab::Analytics::CycleAnalytics::StageEvents::StageEvent do
  let(:instance) { described_class.new({}) }

  it { expect(described_class).to respond_to(:name) }
  it { expect(described_class).to respond_to(:identifier) }
  it { expect(instance).to respond_to(:object_type) }
  it { expect(instance).to respond_to(:timestamp_projection) }
  it { expect(instance).to respond_to(:apply_query_customization) }
end