mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
15 lines
297 B
Ruby
15 lines
297 B
Ruby
require 'abstract_unit'
|
|
|
|
class CDATANodeTest < Test::Unit::TestCase
|
|
def setup
|
|
@node = HTML::CDATA.new(nil, 0, 0, "<p>howdy</p>")
|
|
end
|
|
|
|
def test_to_s
|
|
assert_equal "<![CDATA[<p>howdy</p>]]>", @node.to_s
|
|
end
|
|
|
|
def test_content
|
|
assert_equal "<p>howdy</p>", @node.content
|
|
end
|
|
end
|