summaryrefslogtreecommitdiff
path: root/test/rexml/formatter/test_default.rb
blob: b5b131724b8a465387b76e18c18d2f2d4f9d5a2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require_relative "../rexml_test_utils"

module REXMLTests
  class DefaultFormatterTest < Test::Unit::TestCase
    def format(node)
      formatter = REXML::Formatters::Default.new
      output = ""
      formatter.write(node, output)
      output
    end

    class InstructionTest < self
      def test_content_nil
        instruction = REXML::Instruction.new("target")
        assert_equal("<?target?>", format(instruction))
      end
    end
  end
end