summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMarco Ceresa <bluemonk@users.noreply.github.com>2022-01-08 11:14:52 +0100
committerGitHub <noreply@github.com>2022-01-08 11:14:52 +0100
commit8ff186bd8d71da69fa33b999ff69be9d8885c424 (patch)
tree16941b3027ef5a805e86347806b75be61510109e /test
parent85b95efd1846958e13f4dd6225afffe5b39db306 (diff)
parent9b8d8fdd6489472349843d4607f8be8e05024857 (diff)
downloadipaddress-8ff186bd8d71da69fa33b999ff69be9d8885c424.tar.gz
Merge pull request #77 from smortex/eql
Make eql? behare like ==.
Diffstat (limited to 'test')
-rw-r--r--test/ipaddress/ipv4_test.rb2
-rw-r--r--test/ipaddress/ipv6_test.rb5
2 files changed, 7 insertions, 0 deletions
diff --git a/test/ipaddress/ipv4_test.rb b/test/ipaddress/ipv4_test.rb
index 19e0450..5e8d5a9 100644
--- a/test/ipaddress/ipv4_test.rb
+++ b/test/ipaddress/ipv4_test.rb
@@ -387,8 +387,10 @@ class IPv4Test < Minitest::Test
assert_equal false, ip3 < ip1
# ip1 should be equal to itself
assert_equal true, ip1 == ip1
+ assert_equal true, ip1.eql?(ip1)
# ip1 should be equal to ip4
assert_equal true, ip1 == ip4
+ assert_equal true, ip1.eql?(ip4)
# test sorting
arr = ["10.1.1.1/8","10.1.1.1/16","172.16.1.1/14"]
assert_equal arr, [ip1,ip2,ip3].sort.map{|s| s.to_string}
diff --git a/test/ipaddress/ipv6_test.rb b/test/ipaddress/ipv6_test.rb
index 9d7736d..294d5fa 100644
--- a/test/ipaddress/ipv6_test.rb
+++ b/test/ipaddress/ipv6_test.rb
@@ -325,6 +325,11 @@ class IPv6Test < Minitest::Test
assert_equal false, ip3 < ip1
# ip1 should be equal to itself
assert_equal true, ip1 == ip1
+ assert_equal true, ip1.eql?(ip1)
+ # ip1 should be equal to a copy of itself
+ other = ip1.dup
+ assert_equal true, ip1 == other
+ assert_equal true, ip1.eql?(other)
# ip4 should be greater than ip1
assert_equal true, ip1 < ip4
assert_equal false, ip1 > ip4