Sha256: ce1b4ba089c8a484fe858d8e14da2767d82b4d997db99228fe1029982c610aad

Contents?: true

Size: 1.2 KB

Versions: 4

Compression:

Stored size: 1.2 KB

Contents

require 'rubygems'
require 'cgi'
require 'minitest/autorun'
require 'rdoc'
require 'rdoc/code_objects'

class TestRDocContextSection < MiniTest::Unit::TestCase
  
  def setup
    @S = RDoc::Context::Section
    @s = @S.new nil, 'section', '# comment'
  end

  def test_aref
    assert_equal 'section', @s.aref

    assert_equal '5Buntitled-5D', @S.new(nil, nil, nil).aref

    assert_equal 'one+two', @S.new(nil, 'one two', nil).aref
  end

  def test_comment_equals
    @s.comment = "# :section: section\n"

    assert_equal "# comment", @s.comment

    @s.comment = "# :section: section\n# other"

    assert_equal "# comment\n# ---\n# other", @s.comment

    s = @S.new nil, nil, nil

    s.comment = "# :section:\n# other"

    assert_equal "# other", s.comment
  end

  def test_extract_comment
    assert_equal '',    @s.extract_comment('')
    assert_equal '',    @s.extract_comment("# :section: b\n")
    assert_equal '# c', @s.extract_comment("# :section: b\n# c")
    assert_equal '# c', @s.extract_comment("# a\n# :section: b\n# c")
  end

  def test_sequence
    _, err = capture_io do
      assert_match(/\ASEC\d{5}\Z/, @s.sequence)
    end

    assert_equal "#{@S}#sequence is deprecated, use #aref\n", err
  end

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rdoc-3.6.1 test/test_rdoc_context_section.rb
rdoc-3.6 test/test_rdoc_context_section.rb
rdoc-3.5.3 test/test_rdoc_context_section.rb
rdoc-3.5.2 test/test_rdoc_context_section.rb