summaryrefslogtreecommitdiff
path: root/test/soap/calc/test_calc2.rb
diff options
context:
space:
mode:
authornahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-09-26 18:34:41 +0000
committernahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-09-26 18:34:41 +0000
commit2e0b087b02de40dd7398533522d2cfcf209771df (patch)
treed730760d25ea3b60f787f8a3c734d45036485e63 /test/soap/calc/test_calc2.rb
parent746a4fb43fcc14dcdac95a1c2c26bb3fba55b345 (diff)
* test/soap/*, test/wsdl/*, test/xsd/*: move TestCase classes into each module
namespace. TestMarshal in test/soap/marshal/test_marshal.rb crashed with test/ruby/test_marshal.rb. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4608 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/soap/calc/test_calc2.rb')
-rw-r--r--test/soap/calc/test_calc2.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/soap/calc/test_calc2.rb b/test/soap/calc/test_calc2.rb
index 05a43b60ec..0e84ca390b 100644
--- a/test/soap/calc/test_calc2.rb
+++ b/test/soap/calc/test_calc2.rb
@@ -6,6 +6,11 @@ $:.push(dir)
require 'server2.rb'
$:.delete(dir)
+
+module SOAP
+module Calc
+
+
class TestCalc2 < Test::Unit::TestCase
def setup
@server = CalcServer2.new('CalcServer', 'http://tempuri.org/calcService', '0.0.0.0', 7000)
@@ -41,3 +46,7 @@ class TestCalc2 < Test::Unit::TestCase
end
end
end
+
+
+end
+end