File: test_comment.rb

package info (click to toggle)
ruby-nokogiri 1.18.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 8,076 kB
  • sloc: ansic: 38,893; xml: 27,665; ruby: 27,285; java: 15,348; cpp: 7,107; yacc: 244; sh: 208; makefile: 154; sed: 14
file content (36 lines) | stat: -rw-r--r-- 961 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# frozen_string_literal: true

require "helper"

module Nokogiri
  module XML
    class TestComment < Nokogiri::TestCase
      def setup
        super
        @xml = Nokogiri::XML.parse(File.read(XML_FILE), XML_FILE)
      end

      def test_new
        comment = Nokogiri::XML::Comment.new(@xml, "hello world")
        assert_equal("<!--hello world-->", comment.to_s)
      end

      def test_comment?
        comment = Nokogiri::XML::Comment.new(@xml, "hello world")
        assert_predicate(comment, :comment?)
        refute_predicate(@xml.root, :comment?)
      end

      def test_passing_a_node_uses_the_node_document
        comment = Nokogiri::XML::Comment.new(@xml.at_css("employee"), "hello world")
        assert_equal(@xml, comment.document)
      end

      def test_passing_anything_else
        assert_raises(ArgumentError) do
          Nokogiri::XML::Comment.new("NOT A NOKOGIRI CLASS", "hello world")
        end
      end
    end
  end
end