41 lines
871 B
Ruby
41 lines
871 B
Ruby
describe Champs::EngagementJuridiqueChamp do
|
|
describe 'validation' do
|
|
let(:champ) { build(:champ_engagement_juridique, value: value) }
|
|
subject { champ.valid? }
|
|
|
|
context 'with [A-Z]' do
|
|
let(:value) { "ABC" }
|
|
it { is_expected.to be_truthy }
|
|
end
|
|
|
|
context 'with [0-9]' do
|
|
let(:value) { "ABC" }
|
|
it { is_expected.to be_truthy }
|
|
end
|
|
|
|
context 'with -' do
|
|
let(:value) { "-" }
|
|
it { is_expected.to be_truthy }
|
|
end
|
|
|
|
context 'with _' do
|
|
let(:value) { "_" }
|
|
it { is_expected.to be_truthy }
|
|
end
|
|
|
|
context 'with +' do
|
|
let(:value) { "+" }
|
|
it { is_expected.to be_truthy }
|
|
end
|
|
|
|
context 'with /' do
|
|
let(:value) { "/" }
|
|
it { is_expected.to be_truthy }
|
|
end
|
|
|
|
context 'with *' do
|
|
let(:value) { "*" }
|
|
it { is_expected.to be_falsey }
|
|
end
|
|
end
|
|
end
|