describe Html do
it 'should generate simple HTML' do
Html.build do |html|
html.span('hello wwworld')
end.should == 'hello wwworld'
end
it 'should escape unsafe characters' do
Html.escape_once('"hi&"').should == '"hi&<guy>"'
end
it 'should support comments' do
Html.build do |html|
html.comment! 'Important stuff'
html.h1 'Da header'
end.should == "\n\n\n Da header\n
\n"
end
end