diff options
author | kwadronaut <kwadronaut@leap.se> | 2014-03-26 09:38:41 +0100 |
---|---|---|
committer | kwadronaut <kwadronaut@leap.se> | 2014-03-26 09:38:41 +0100 |
commit | e7332f2370db83523c52ca2cf5510db001469093 (patch) | |
tree | 23d2c69e355042f1f067cca7a9329733c895c12f /tests/white-box/network.rb | |
parent | b45d265a08884a65e7100e34067a0d8c390da8f0 (diff) | |
parent | cd09ed9eb9d183123652a52651a427bab558c496 (diff) |
Merge branch 'feature/cleanup-test-names' of https://github.com/elijh/leap_platform into elijh-feature/cleanup-test-names
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| |