summaryrefslogtreecommitdiff
path: root/test/soap/test_basetype.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/test_basetype.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/test_basetype.rb')
-rw-r--r--test/soap/test_basetype.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/soap/test_basetype.rb b/test/soap/test_basetype.rb
index 80903633b1..16f211c717 100644
--- a/test/soap/test_basetype.rb
+++ b/test/soap/test_basetype.rb
@@ -1,6 +1,10 @@
require 'test/unit'
require 'soap/baseData'
+
+module SOAP
+
+
class TestSOAP < Test::Unit::TestCase
def setup
# Nothing to do.
@@ -949,3 +953,6 @@ class TestSOAP < Test::Unit::TestCase
end
end
end
+
+
+end