aboutsummaryrefslogtreecommitdiffstats
path: root/test/soap/calc/test_calc_cgi.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_calc_cgi.rb
parent746a4fb43fcc14dcdac95a1c2c26bb3fba55b345 (diff)
downloadruby-2e0b087b02de40dd7398533522d2cfcf209771df.tar.gz
* 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_calc_cgi.rb')
-rw-r--r--test/soap/calc/test_calc_cgi.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/soap/calc/test_calc_cgi.rb b/test/soap/calc/test_calc_cgi.rb
index 682356e525..6c89d46c12 100644
--- a/test/soap/calc/test_calc_cgi.rb
+++ b/test/soap/calc/test_calc_cgi.rb
@@ -2,6 +2,11 @@ require 'test/unit'
require 'soap/rpc/driver'
require 'webrick'
+
+module SOAP
+module Calc
+
+
class TestCalcCGI < Test::Unit::TestCase
def setup
@server = WEBrick::HTTPServer.new(
@@ -40,3 +45,7 @@ class TestCalcCGI < Test::Unit::TestCase
end
end
end
+
+
+end
+end