diff options
author | Taketo Takashima <[email protected]> | 2023-11-16 17:53:32 +0900 |
---|---|---|
committer | git <[email protected]> | 2024-10-18 15:00:37 +0000 |
commit | eb8cf1d60e4436bfebf52fbf4342ee6e5e18ba05 () | |
tree | 8ad188409375a4ff69c7acf54bc960287d1d6c44 /test/test_ipaddr.rb | |
parent | 6b1268c7bf0816a250991593f1e504db428b6e30 (diff) |
[ruby/ipaddr] Added to_json/as_json method
Updated to use cidr method when return address with prefix in #as_json https://.com/ruby/ipaddr/commit/cf8181d53e
-rw-r--r-- | test/test_ipaddr.rb | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -260,6 +260,20 @@ class TC_IPAddr < Test::Unit::TestCase assert_equal("3ffe:505:2::1", IPAddr.new("3ffe:505:2::1").to_s) end def test_netmask a = IPAddr.new("192.168.1.2/8") assert_equal(a.netmask, "255.0.0.0") |