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 'server.rb'
$:.delete(dir)
module SOAP
module Calc
class TestCalc < Test::Unit::TestCase
def setup
@server = CalcServer.new(self.class.name, nil, '0.0.0.0', 7000)
@ -39,3 +44,7 @@ class TestCalc < Test::Unit::TestCase
end
end
end
end
end

View file

@ -6,6 +6,11 @@ $:.push(dir)
require 'server2.rb'
$:.delete(dir)
module SOAP
module Calc
class TestCalc2 < Test::Unit::TestCase
def setup
@server = CalcServer2.new('CalcServer', 'http://tempuri.org/calcService', '0.0.0.0', 7000)
@ -41,3 +46,7 @@ class TestCalc2 < Test::Unit::TestCase
end
end
end
end
end

View file

@ -2,6 +2,11 @@ require 'test/unit'
require 'soap/rpc/driver'
require 'webrick'
module SOAP
module Calc
class TestCalcCGI < Test::Unit::TestCase
def setup
@server = WEBrick::HTTPServer.new(
@ -40,3 +45,7 @@ class TestCalcCGI < Test::Unit::TestCase
end
end
end
end
end