Model
validates_length_of :description, :maximum => 255, :allow_nil => true
spec_file
it { should ensure_length_of(:description).is_at_most(255).allow_nil }
return exeption
Failure/Error: it { should ensure_length_of(:description).is_at_most(255).allow_nil }
NoMethodError:
undefined method `allow_nil' for #<Shoulda::Matchers::ActiveModel::EnsureLengthOfMatcher:0x0000000acb03e0>
Pls, help!
There is no
allow_nil
method forShoulda::Matchers::ActiveModel::EnsureLengthOfMatcher
.You could use
allow_value
: