1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* 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
This commit is contained in:
nahi 2003-09-26 18:34:41 +00:00
parent 746a4fb43f
commit 2e0b087b02
13 changed files with 105 additions and 9 deletions

View file

@ -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