diff options
| author | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-09-26 18:34:41 +0000 |
|---|---|---|
| committer | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-09-26 18:34:41 +0000 |
| commit | 157914e2c71fca0da2f8b83551be330167b6619f (patch) | |
| tree | d730760d25ea3b60f787f8a3c734d45036485e63 /test/wsdl | |
| parent | 3edd14272a239182d42cfd45eb855a45b0af86c9 (diff) | |
| download | ruby-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/wsdl')
| -rw-r--r-- | test/wsdl/test_emptycomplextype.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/wsdl/test_emptycomplextype.rb b/test/wsdl/test_emptycomplextype.rb index f44c72f84..fffc8c85e 100644 --- a/test/wsdl/test_emptycomplextype.rb +++ b/test/wsdl/test_emptycomplextype.rb @@ -1,6 +1,10 @@ require 'test/unit' require 'wsdl/parser' + +module WSDL + + class TestWSDL < Test::Unit::TestCase def self.setup(filename) @@filename = filename @@ -12,3 +16,6 @@ class TestWSDL < Test::Unit::TestCase end TestWSDL.setup(File.join(File.dirname(__FILE__), 'emptycomplextype.wsdl')) + + +end |
