Allow people to capitalize a word when ninja-editing a post

This commit is contained in:
Neil Lalonde
2013-06-17 15:57:13 -04:00
parent 9540112d32
commit 281a08a99f
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -417,8 +417,8 @@ describe Post do
post.raw_hash.should == post_with_body(" thisis ourt est postbody").raw_hash
end
it "returns the same hash even with different text case" do
post.raw_hash.should == post_with_body("THIS is OUR TEST post BODy").raw_hash
it "returns a different value with different text case" do
post.raw_hash.should_not == post_with_body("THIS is OUR TEST post BODy").raw_hash
end
end