Sha256: 8ed57359faa6685e739af8ff206a41a9b7a25ed1adaeee70c2eda1b71f830a4c

Contents?: true

Size: 865 Bytes

Versions: 11

Compression:

Stored size: 865 Bytes

Contents

require File.expand_path '../xref_test_case', __FILE__

class TestRDocNormalModule < XrefTestCase

  def setup
    super

    @mod = RDoc::NormalModule.new 'Mod'
  end

  def test_ancestors_module
    top_level = @store.add_file 'file.rb'
    mod = top_level.add_module RDoc::NormalModule, 'Mod'
    incl = RDoc::Include.new 'Incl', ''

    mod.add_include incl

    assert_equal [incl.name], mod.ancestors

    mod2 = top_level.add_module RDoc::NormalModule, 'Inc2'
    inc2 = RDoc::Include.new 'Inc2', ''
    mod.add_include inc2
    assert_equal [mod2, incl.name], mod.ancestors
  end

  def test_aref
    assert_equal 'module-M1',     @m1.aref
    assert_equal 'module-M1::M2', @m1_m2.aref
  end

  def test_definition
    m = RDoc::NormalModule.new 'M'

    assert_equal 'module M', m.definition
  end

  def test_module_eh
    assert @mod.module?
  end

end

Version data entries

11 entries across 9 versions & 2 rubygems

Version Path
rdoc-4.3.0 test/test_rdoc_normal_module.rb
rdoc-4.2.2 test/test_rdoc_normal_module.rb
honeybadger-2.4.0 vendor/gems/ruby/2.2.0/gems/rdoc-4.1.1/test/test_rdoc_normal_module.rb
honeybadger-2.4.0 vendor/gems/ruby/1.9.1/gems/rdoc-4.1.1/test/test_rdoc_normal_module.rb
honeybadger-2.4.0 vendor/gems/ruby/2.1.0/gems/rdoc-4.1.1/test/test_rdoc_normal_module.rb
rdoc-4.2.1 test/test_rdoc_normal_module.rb
rdoc-4.2.0 test/test_rdoc_normal_module.rb
rdoc-4.1.2 test/test_rdoc_normal_module.rb
rdoc-4.1.1 test/test_rdoc_normal_module.rb
rdoc-4.1.0 test/test_rdoc_normal_module.rb
rdoc-4.1.0.preview.3 test/test_rdoc_normal_module.rb