Sha256: d93efd0ae07178ae1c5e40e2f41cc8af841558a99aa41aca0686de9d4c45da05
Contents?: true
Size: 607 Bytes
Versions: 119
Compression:
Stored size: 607 Bytes
Contents
require "helper" module Nokogiri class TestSlop < Nokogiri::TestCase def test_description_tag doc = Nokogiri.Slop(<<-eoxml) <item> <title>foo</title> <description>this is the foo thing</description> </item> eoxml assert doc.item.respond_to?(:title) assert_equal 'foo', doc.item.title.text assert doc.item.respond_to?(:_description), 'should have description' assert 'this is the foo thing', doc.item._description.text assert !doc.item.respond_to?(:foo) assert_raise(NoMethodError) { doc.item.foo } end end end
Version data entries
119 entries across 115 versions & 13 rubygems