зеркало из https://github.com/github/ruby.git
20 строки
416 B
Ruby
20 строки
416 B
Ruby
require 'rdoc/test_case'
|
|
|
|
class TestRDocMarkupInclude < RDoc::TestCase
|
|
|
|
def setup
|
|
super
|
|
|
|
@include = @RM::Include.new 'file', [Dir.tmpdir]
|
|
end
|
|
|
|
def test_equals2
|
|
assert_equal @include, @RM::Include.new('file', [Dir.tmpdir])
|
|
refute_equal @include, @RM::Include.new('file', %w[.])
|
|
refute_equal @include, @RM::Include.new('other', [Dir.tmpdir])
|
|
refute_equal @include, Object.new
|
|
end
|
|
|
|
end
|
|
|