gitlab-org--gitlab-foss/spec/lib/gitlab/ci/trace_spec.rb

30 lines
738 B
Ruby
Raw Normal View History

# frozen_string_literal: true
require 'spec_helper'
2018-06-01 01:22:31 -04:00
describe Gitlab::Ci::Trace, :clean_gitlab_redis_shared_state do
let(:build) { create(:ci_build) }
let(:trace) { described_class.new(build) }
describe "associations" do
it { expect(trace).to respond_to(:job) }
it { expect(trace).to delegate_method(:old_trace).to(:job) }
end
context 'when live trace feature is disabled' do
before do
stub_feature_flags(ci_enable_live_trace: false)
end
2018-04-05 11:42:25 -04:00
it_behaves_like 'trace with disabled live trace feature'
end
context 'when live trace feature is enabled' do
2018-04-02 12:22:46 -04:00
before do
stub_feature_flags(ci_enable_live_trace: true)
2018-04-02 12:22:46 -04:00
end
it_behaves_like 'trace with enabled live trace feature'
end
end