spec/spec.sane.rb in sane-0.24.0 vs spec/spec.sane.rb in sane-0.24.1
- old
+ new
@@ -179,6 +179,10 @@
1_000_000.group_digits.should == '1,000,000'
1_000_000.0.group_digits.should == '1,000,000.0'
1_000_000.03555.group_digits.should == '1,000,000.03555'
end
+ it "should have a string replace method" do
+ "abc".replace_with!("def").should == "def"
+ end
+
end