Sha256: 755f6c36487946987f6043143491e34dcd467b8505fc373b780c752a75dbf731
Contents?: true
Size: 709 Bytes
Versions: 2
Compression:
Stored size: 709 Bytes
Contents
#! /usr/bin/env ruby require File.dirname(__FILE__) + '/test_helper.rb' require 'gonzui/webapp/xmlformatter' require '_test-util' class UtilTest < Test::Unit::TestCase def test_format_xml html = [:html] head = [:head, [:title, "foo"]] body = [:body, [:h1, [:a, {:href => 'foo<&">.html'}, 'foo<&">']]] body.push([:p, "hello"]) html.push(head) html.push(body) formatter = Gonzui::XMLFormatter.new result = formatter.format(html) assert_equal("<html\n><head\n><title\n>foo</title\n></head\n><body\n><h1\n><a href=\"foo<&">.html\"\n>foo<&"></a\n></h1\n><p\n>hello</p\n></body\n></html\n>", result) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
gonzui-1.2-x86-mswin32-60 | test/test_webapp-util.rb |
gonzui-1.2 | test/test_webapp-util.rb |