gitlab-org--gitlab-foss/spec/models/concerns/has_ref_spec.rb
2018-12-08 19:25:44 +01:00

31 lines
563 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
describe HasRef do
describe '#branch?' do
let(:pipeline) { create(:ci_pipeline) }
subject { pipeline.branch? }
context 'is not a tag' do
before do
pipeline.tag = false
end
it 'return true when tag is set to false' do
is_expected.to be_truthy
end
end
context 'is not a tag' do
before do
pipeline.tag = true
end
it 'return false when tag is set to true' do
is_expected.to be_falsey
end
end
end
end