From 7809642d654b05f90e2b3488f907151098d4ac10 Mon Sep 17 00:00:00 2001 From: Steve Kemp Date: Thu, 22 Nov 2012 11:17:25 +0000 Subject: Updated test-case to cope with the changed name of the ping-tool class. --- t/test-multi-ping.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 't') diff --git a/t/test-multi-ping.rb b/t/test-multi-ping.rb index d55c5e0..c7f65cf 100755 --- a/t/test-multi-ping.rb +++ b/t/test-multi-ping.rb @@ -3,7 +3,7 @@ require 'test/unit' -require 'custodian/multiping' +require 'custodian/util/ping' @@ -35,14 +35,14 @@ class TestMultiPing < Test::Unit::TestCase # Calling without a hostname is a mistake. # assert_raise ArgumentError do - obj = MultiPing.new() + obj = Custodian::Util::Ping.new() end # # Calling with a hostname should be fine mistake. # assert_nothing_raised do - obj = MultiPing.new( "some.host.anme" ) + obj = Custodian::Util::Ping.new( "some.host.anme" ) end end @@ -66,7 +66,7 @@ class TestMultiPing < Test::Unit::TestCase to_test.each do |name,version| - a = MultiPing.new( name ) + a = Custodian::Util::Ping.new( name ) if ( version == 6 ) assert_equal( a.is_ipv6?, true, "#{name} is IPv6" ) @@ -88,7 +88,7 @@ class TestMultiPing < Test::Unit::TestCase def test_bogus %w( tessf.dfsdf.sdf.sdfsdf fdsfkljflj3.fdsfds.f3.dfs ).each do |name| - helper = MultiPing.new( name ) + helper = Custodian::Util::Ping.new( name ) assert( ! helper.is_ipv4? ) assert( ! helper.is_ipv6? ) -- cgit v1.2.1