demarches-normaliennes/spec/models/champs/integer_number_champ_spec.rb

43 lines
1.1 KiB
Ruby
Raw Normal View History

2018-10-31 19:48:28 +01:00
describe Champs::IntegerNumberChamp do
let(:champ) { build(:champ_integer_number, value:) }
subject { champ.validate(:champs_public_value) }
2018-10-31 19:48:28 +01:00
describe '#valid?' do
context 'when the value is integer number' do
let(:value) { 2 }
it { is_expected.to be_truthy }
2018-10-31 19:48:28 +01:00
end
context 'when the value is decimal number' do
let(:value) { 2.6 }
it 'is not valid and contains errors' do
is_expected.to be_falsey
expect(champ.errors[:value]).to eq(["doit être un nombre entier (sans chiffres après la virgule)"])
end
2018-10-31 19:48:28 +01:00
end
context 'when the value is not a number' do
let(:value) { 'toto' }
it 'is not valid and contains errors' do
is_expected.to be_falsey
expect(champ.errors[:value]).to eq(["doit être un nombre entier (sans chiffres après la virgule)"])
end
2018-10-31 19:48:28 +01:00
end
2018-11-29 14:35:42 +01:00
context 'when the value is blank' do
let(:value) { '' }
it { is_expected.to be_truthy }
2018-11-29 14:35:42 +01:00
end
context 'when the value is nil' do
let(:value) { nil }
it { is_expected.to be_truthy }
2018-11-29 14:35:42 +01:00
end
2018-10-31 19:48:28 +01:00
end
end