# encoding: UTF-8
require File.expand_path(File.dirname(__FILE__) + '/../spec_helper.rb')
describe EscapeUtils do
it "should respond to escape_html" do
EscapeUtils.should respond_to(:escape_html)
end
context "escape_html" do
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
end
end