mirror of
				https://github.com/ruby/ruby.git
				synced 2022-11-09 12:17:21 -05:00 
			
		
		
		
	 7d27c0a2d8
			
		
	
	
		7d27c0a2d8
		
	
	
	
	
		
			
			* lib/resolv.rb (Resolv::LOC::Coord.create): fixed. [ruby-core:72567] [Bug #11912] fixed by Eric Wong and Kazuhiro NISHIYAMA. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56604 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			631 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			631 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: false
 | |
| require 'test/unit'
 | |
| require 'resolv'
 | |
| 
 | |
| class TestResolvResource < Test::Unit::TestCase
 | |
|   def setup
 | |
|     address = "192.168.0.1"
 | |
|     @name1 = Resolv::DNS::Resource::IN::A.new(address)
 | |
|     @name1.instance_variable_set(:@ttl, 100)
 | |
|     @name2 = Resolv::DNS::Resource::IN::A.new(address)
 | |
|   end
 | |
| 
 | |
|   def test_equality
 | |
|     bug10857 = '[ruby-core:68128] [Bug #10857]'
 | |
|     assert_equal(@name1, @name2, bug10857)
 | |
|   end
 | |
| 
 | |
|   def test_hash
 | |
|     bug10857 = '[ruby-core:68128] [Bug #10857]'
 | |
|     assert_equal(@name1.hash, @name2.hash, bug10857)
 | |
|   end
 | |
| 
 | |
|   def test_coord
 | |
|     Resolv::LOC::Coord.create('1 2 1.1 N')
 | |
|   end
 | |
| end
 |