spec/toy/extensions/boolean_spec.rb in toystore-0.8.3 vs spec/toy/extensions/boolean_spec.rb in toystore-0.9.0

- old
+ new

@@ -11,14 +11,16 @@ it "should handle odd assortment of other values" do Boolean.to_store('true').should be_true Boolean.to_store('t').should be_true Boolean.to_store('1').should be_true + Boolean.to_store('on').should be_true Boolean.to_store(1).should be_true Boolean.to_store('false').should be_false Boolean.to_store('f').should be_false Boolean.to_store('0').should be_false + Boolean.to_store('off').should be_false Boolean.to_store(0).should be_false end it "should be nil for nil" do Boolean.to_store(nil).should be_nil