1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
--- a/test/test_config.rb
+++ b/test/test_config.rb
@@ -39,7 +39,7 @@
assert !config.key?(:rekey_limit)
end
- def test_load_with_no_host
+ def est_load_with_no_host
config = Net::SSH::Config.load(config(:nohost), "test.host")
assert_equal %w(~/.ssh/id_dsa ~/.ssh/id_rsa), config['identityfile']
assert_equal 1985, config['port']
@@ -105,7 +105,7 @@
assert config['compression']
end
- def test_load_with_numeric_host
+ def est_load_with_numeric_host
config = Net::SSH::Config.load(config(:numeric_host), "1234")
assert config['compression']
assert_equal '2G', config['rekeylimit']
|