Welcome to mirror list, hosted at ThFree Co, Russian Federation.

stage_event_spec.rb « stage_events « cycle_analytics « analytics « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1e0034e386e2cca8902874628a2175173dbed4db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

require 'fast_spec_helper'

RSpec.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