spec/html/escape_spec.rb in escape_utils-0.1.4 vs spec/html/escape_spec.rb in escape_utils-0.1.5
- old
+ new
@@ -5,22 +5,22 @@
it "should respond to escape_html" do
EscapeUtils.should respond_to(:escape_html)
end
it "should escape a basic html tag" do
- EscapeUtils.escape_html("<some_tag/>").should eql("<some_tag/>")
+ EscapeUtils.escape_html("<some_tag/>").should eql("<some_tag/>")
end
it "should escape double-quotes" do
- EscapeUtils.escape_html("<some_tag some_attr=\"some value\"/>").should eql("<some_tag some_attr="some value"/>")
+ EscapeUtils.escape_html("<some_tag some_attr=\"some value\"/>").should eql("<some_tag some_attr="some value"/>")
end
it "should escape single-quotes" do
- EscapeUtils.escape_html("<some_tag some_attr='some value'/>").should eql("<some_tag some_attr='some value'/>")
+ EscapeUtils.escape_html("<some_tag some_attr='some value'/>").should eql("<some_tag some_attr='some value'/>")
end
it "should escape the & character" do
- EscapeUtils.escape_html("<b>Bourbon & Branch</b>").should eql("<b>Bourbon & Branch</b>")
+ EscapeUtils.escape_html("<b>Bourbon & Branch</b>").should eql("<b>Bourbon & Branch</b>")
end
if RUBY_VERSION =~ /^1.9/
it "should default to utf-8 if Encoding.default_internal is nil" do
Encoding.default_internal = nil
\ No newline at end of file