提交 c754b693 编写于 作者: S Shinya Maeda

Clean up presence validation spec

上级 f7f60ab5
......@@ -36,13 +36,12 @@ describe Ci::Pipeline, :mailer do
end
describe 'modules' do
it_behaves_like 'AtomicInternalId' do
it_behaves_like 'AtomicInternalId', validate_presence: false do
let(:internal_id_attribute) { :iid }
let(:instance) { build(:ci_pipeline) }
let(:scope) { :project }
let(:scope_attrs) { { project: instance.project } }
let(:usage) { :ci_pipelines }
let(:allow_nil) { true }
end
end
......
require 'spec_helper'
shared_examples_for 'AtomicInternalId' do
let(:allow_nil) { false }
shared_examples_for 'AtomicInternalId' do |validate_presence: true|
describe '.has_internal_id' do
describe 'Module inclusion' do
subject { described_class }
......@@ -12,16 +10,28 @@ shared_examples_for 'AtomicInternalId' do
describe 'Validation' do
before do
allow_any_instance_of(described_class).to receive(:"ensure_#{scope}_#{internal_id_attribute}!") {}
allow_any_instance_of(described_class).to receive(:"ensure_#{scope}_#{internal_id_attribute}!")
instance.valid?
end
context 'when presence validattion is required' do
before do
skip unless validate_presence
end
it 'validates presence' do
instance.valid?
expect(instance.errors[internal_id_attribute]).to include("can't be blank")
end
end
if allow_nil
context 'when presence validattion is not required' do
before do
skip if validate_presence
end
it 'does not validate presence' do
expect(instance.errors[internal_id_attribute]).to be_empty
else
expect(instance.errors[internal_id_attribute]).to include("can't be blank")
end
end
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册