summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/server_test.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/server_test.rb b/test/server_test.rb
index 544ea16..ecfa12e 100644
--- a/test/server_test.rb
+++ b/test/server_test.rb
@@ -14,6 +14,10 @@ class ServerTest < Minitest::Test
assert_equal "hello", server('host', :properties => { :foo => "hello" })[:foo]
end
+ def test_ipv6_works_with_given_port_using_bracket_notation
+ assert_equal 9022, server('[2001:DB8::1234]:9022').port
+ end
+
def test_port_should_return_22_by_default
assert_equal 22, server('host').port
end