debian-mirror-gitlab/spec/lib/gitlab/analytics/cycle_analytics/stage_events/stage_event_spec.rb

14 lines
480 B
Ruby
Raw Normal View History

2019-12-04 20:38:33 +05:30
# frozen_string_literal: true
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe Gitlab::Analytics::CycleAnalytics::StageEvents::StageEvent do
2019-12-21 20:55:43 +05:30
let(:instance) { described_class.new({}) }
2019-12-04 20:38:33 +05:30
it { expect(described_class).to respond_to(:name) }
it { expect(described_class).to respond_to(:identifier) }
2019-12-21 20:55:43 +05:30
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) }
2019-12-04 20:38:33 +05:30
end