summaryrefslogtreecommitdiff
path: root/test/rdoc/test_rdoc_constant.rb
blob: b915f5cc7a45ab959600f7edabebca617b269f0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require File.expand_path '../xref_test_case', __FILE__

class TestRDocConstant < XrefTestCase

  def setup
    super

    @const = @c1.constants.first
  end

  def test_path
    assert_equal 'C1.html#CONST', @const.path
  end

end