spec/nsstring_spec.rb in sugarcube-1.5.0 vs spec/nsstring_spec.rb in sugarcube-1.5.1
- old
+ new
@@ -96,6 +96,10 @@
it "should have a #nan? method" do
"pi".nan?.should.equal true
"3.12159".nan?.should.equal false
end
+ it "should have a #remove_accents method" do
+ 'çan thîs tést ruñ òk?'.remove_accents.should == 'can this test run ok?'
+ end
+
end