test/test_latlng.rb in geokit-1.2.6 vs test/test_latlng.rb in geokit-1.3.0

- old
+ new

@@ -126,7 +126,23 @@ res=Geokit::LatLng.normalize("#{lat.to_i} #{lng.to_i}") assert_equal res,Geokit::LatLng.new(lat.to_i,lng.to_i) res=Geokit::LatLng.normalize([lat,lng]) assert_equal res,Geokit::LatLng.new(lat,lng) end - + + def test_hash + lat=37.7690 + lng=-122.443 + first = Geokit::LatLng.new(lat,lng) + second = Geokit::LatLng.new(lat,lng) + assert_equal first.hash, second.hash + end + + def test_eql? + lat=37.7690 + lng=-122.443 + first = Geokit::LatLng.new(lat,lng) + second = Geokit::LatLng.new(lat,lng) + assert first.eql?(second) + assert second.eql?(first) + end end \ No newline at end of file