summaryrefslogtreecommitdiffstats
path: root/test/xsd
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
commit157914e2c71fca0da2f8b83551be330167b6619f (patch)
treed730760d25ea3b60f787f8a3c734d45036485e63 /test/xsd
parent3edd14272a239182d42cfd45eb855a45b0af86c9 (diff)
downloadruby-157914e2c71fca0da2f8b83551be330167b6619f.tar.gz
ruby-157914e2c71fca0da2f8b83551be330167b6619f.tar.xz
ruby-157914e2c71fca0da2f8b83551be330167b6619f.zip
* 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: http://svn.ruby-lang.org/repos/ruby/trunk@4608 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/xsd')
-rw-r--r--test/xsd/test_xmlschemaparser.rb7
-rw-r--r--test/xsd/test_xsd.rb7
2 files changed, 14 insertions, 0 deletions
diff --git a/test/xsd/test_xmlschemaparser.rb b/test/xsd/test_xmlschemaparser.rb
index 6e3839a0d..b36212054 100644
--- a/test/xsd/test_xmlschemaparser.rb
+++ b/test/xsd/test_xmlschemaparser.rb
@@ -1,6 +1,10 @@
require 'test/unit'
require 'wsdl/xmlSchema/parser'
+
+module XSD
+
+
class TestXMLSchemaParser < Test::Unit::TestCase
def self.setup(filename)
@@filename = filename
@@ -12,3 +16,6 @@ class TestXMLSchemaParser < Test::Unit::TestCase
end
TestXMLSchemaParser.setup(File.join(File.dirname(__FILE__), 'xmlschema.xml'))
+
+
+end
diff --git a/test/xsd/test_xsd.rb b/test/xsd/test_xsd.rb
index 7fb5052f4..bbcbc9c77 100644
--- a/test/xsd/test_xsd.rb
+++ b/test/xsd/test_xsd.rb
@@ -1,6 +1,10 @@
require 'test/unit'
require 'xsd/datatypes'
+
+module XSD
+
+
class TestXSD < Test::Unit::TestCase
def setup
# Nothing to do.
@@ -974,3 +978,6 @@ class TestXSD2 < Test::Unit::TestCase
end
end
end
+
+
+end