summaryrefslogtreecommitdiff
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
commit2e0b087b02de40dd7398533522d2cfcf209771df (patch)
treed730760d25ea3b60f787f8a3c734d45036485e63 /test/xsd
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/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 6e3839a0d2..b362120540 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 7fb5052f43..bbcbc9c778 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