spec/unit/chozo/varia_model_spec.rb in chozo-0.2.3 vs spec/unit/chozo/varia_model_spec.rb in chozo-0.3.0
- old
+ new
@@ -210,10 +210,10 @@
model.set_attribute(key, nil)
subject.validate_required(model, key).first.should eql(:error)
end
- it "passes validation if the value of the attribute is false", focus: true do
+ it "passes validation if the value of the attribute is false" do
model.set_attribute(key, false)
subject.validate_required(model, key).first.should eql(:ok)
end