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/soap/helloworld | |
| parent | 3edd14272a239182d42cfd45eb855a45b0af86c9 (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: http://svn.ruby-lang.org/repos/ruby/trunk@4608 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/soap/helloworld')
| -rw-r--r-- | test/soap/helloworld/test_helloworld.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/soap/helloworld/test_helloworld.rb b/test/soap/helloworld/test_helloworld.rb index ccf77f9c1..0aa552e4a 100644 --- a/test/soap/helloworld/test_helloworld.rb +++ b/test/soap/helloworld/test_helloworld.rb @@ -6,6 +6,11 @@ $:.push(dir) require 'hw_s.rb' $:.delete(dir) + +module SOAP +module HelloWorld + + class TestHelloWorld < Test::Unit::TestCase def setup @server = HelloWorldServer.new('hws', 'urn:hws', '0.0.0.0', 2000) @@ -29,3 +34,7 @@ class TestHelloWorld < Test::Unit::TestCase assert_equal("Hello World, from <&>", @client.hello_world("<&>")) end end + + +end +end |
