diff options
author | varac <varacanero@zeromail.org> | 2014-03-26 13:37:56 +0100 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2014-03-26 13:37:56 +0100 |
commit | ce35a9dc3457f87ebd8f87decfad1a55e7cfa27a (patch) | |
tree | c8538a52738b401ba1cb85b4690a2e7b415a182b /tests/white-box/network.rb | |
parent | f3deb7db2648080bbe74dd4de9c7a45caadaff80 (diff) | |
parent | e7332f2370db83523c52ca2cf5510db001469093 (diff) |
Merge branch '0.6' of ssh://code.leap.se/leap_platform into 0.6
Diffstat (limited to 'tests/white-box/network.rb')
-rw-r--r-- | tests/white-box/network.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/white-box/network.rb b/tests/white-box/network.rb index 53df80dc..14de2eac 100644 --- a/tests/white-box/network.rb +++ b/tests/white-box/network.rb @@ -2,12 +2,12 @@ require 'socket' raise SkipTest if $node["dummy"] -class TestNetwork < LeapTest +class Network < LeapTest def setup end - def test_01_can_connect_to_internet + def test_01_Can_connect_to_internet? assert_get('http://www.google.com/images/srpr/logo11w.png') pass end @@ -25,7 +25,7 @@ class TestNetwork < LeapTest # accept: 15984 # connect: "127.0.0.1:5984" # - def test_02_stunnel_is_running + def test_02_Is_stunnel_running? if $node['stunnel'] good_stunnel_pids = [] $node['stunnel'].each do |stunnel_type, stunnel_configs| |