mirror of
				https://github.com/ruby/ruby.git
				synced 2022-11-09 12:17:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			447 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			447 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| require_relative 'helper'
 | |
| 
 | |
| 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
 | |
| 
 | 
