debian-mirror-gitlab/spec/presenters/ci/bridge_presenter_spec.rb
2019-12-26 22:10:19 +05:30

18 lines
428 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
describe Ci::BridgePresenter do
set(:project) { create(:project) }
set(:pipeline) { create(:ci_pipeline, project: project) }
set(:bridge) { create(:ci_bridge, pipeline: pipeline, status: :failed) }
subject(:presenter) do
described_class.new(bridge)
end
it 'presents information about recoverable state' do
expect(presenter).to be_recoverable
end
end