# encoding: UTF-8
require File.expand_path(File.dirname(__FILE__) + '/../spec_helper.rb')
describe EscapeUtils, "escape_html" do
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("").should eql("<some_tag/>")
end
it "should escape double-quotes" do
EscapeUtils.escape_html("").should eql("<some_tag some_attr="some value"/>")
end
it "should escape single-quotes" do
EscapeUtils.escape_html("").should eql("<some_tag some_attr='some value'/>")
end
it "should escape the & character" do
EscapeUtils.escape_html("Bourbon & Branch").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
EscapeUtils.escape_html("Bourbon & Branch").encoding.should eql(Encoding.find('utf-8'))
end
it "should use Encoding.default_internal" do
Encoding.default_internal = Encoding.find('utf-8')
EscapeUtils.escape_html("Bourbon & Branch").encoding.should eql(Encoding.default_internal)
Encoding.default_internal = Encoding.find('us-ascii')
EscapeUtils.escape_html("Bourbon & Branch").encoding.should eql(Encoding.default_internal)
end
end
end