You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
678 B
25 lines
678 B
#!/usr/bin/env ruby
|
|
|
|
require 'test/unit'
|
|
require 'hpricot'
|
|
|
|
class TestBuilder < Test::Unit::TestCase
|
|
def test_escaping_text
|
|
doc = Hpricot() { b "<a\"b>" }
|
|
assert_equal "<b><a"b></b>", doc.to_html
|
|
assert_equal %{<a"b>}, doc.at("text()").to_s
|
|
end
|
|
|
|
def test_no_escaping_text
|
|
doc = Hpricot() { div.test.me! { text "<a\"b>" } }
|
|
assert_equal %{<div class="test" id="me"><a"b></div>}, doc.to_html
|
|
assert_equal %{<a"b>}, doc.at("text()").to_s
|
|
end
|
|
|
|
def test_latin1_entities
|
|
doc = Hpricot() { b "\200\225" }
|
|
assert_equal "<b>ۥ</b>", doc.to_html
|
|
assert_equal "\342\202\254\342\200\242", doc.at("text()").to_s
|
|
end
|
|
end
|