Changeset 1541
- Timestamp:
- 05/10/05 20:28:20 (4 years ago)
- Files:
-
- trunk/test/16runner.rb (modified) (1 diff)
- trunk/test/soap/marshal/test_marshal.rb (modified) (2 diffs)
- trunk/test/soap/ssl/test_ssl.rb (modified) (1 diff)
- trunk/test/soap/struct/test_struct.rb (modified) (1 diff)
- trunk/test/soap/test_styleuse.rb (modified) (1 diff)
- trunk/test/soap/wsdlDriver/test_calc.rb (modified) (1 diff)
- trunk/test/soap/wsdlDriver/test_simpletype.rb (modified) (1 diff)
- trunk/test/wsdl/map/test_map.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/test/16runner.rb
r1537 r1541 7 7 Version = rcsid[2].scan(/\d+/).collect!(&method(:Integer)).freeze 8 8 Release = rcsid[3].freeze 9 10 module Test 11 module Unit 12 module Assertions 13 alias assert_raise assert_raises 14 end 15 end 16 end 9 17 10 18 class BulkTestSuite < Test::Unit::TestSuite trunk/test/soap/marshal/test_marshal.rb
r1520 r1541 2 2 require 'soap/marshal' 3 3 require File.join(File.dirname(File.expand_path(__FILE__)), 'marshaltestlib') 4 5 6 if RUBY_VERSION > "1.7.0" 4 7 5 8 … … 19 22 end 20 23 end 24 25 26 end trunk/test/soap/ssl/test_ssl.rb
r1520 r1541 6 6 require 'soap/rpc/driver' 7 7 8 if defined?(HTTPAccess2) 8 if defined?(HTTPAccess2) and defined?(OpenSSL) 9 9 10 10 module SOAP; module SSL trunk/test/soap/struct/test_struct.rb
r1520 r1541 31 31 @server = Server.new( 32 32 :Port => Port, 33 :BindAddress => "0.0.0.0", 33 34 :AccessLog => [], 34 35 :SOAPDefaultNamespace => Namespace trunk/test/soap/test_styleuse.rb
r1536 r1541 208 208 def setup_server 209 209 @server = Server.new( 210 :BindAddress => "0.0.0.0", 210 211 :Port => Port, 211 212 :AccessLog => [], trunk/test/soap/wsdlDriver/test_calc.rb
r1470 r1541 28 28 def setup_server 29 29 @server = Server.new( 30 :BindAddress => "0.0.0.0", 30 31 :Port => Port, 31 32 :AccessLog => [], trunk/test/soap/wsdlDriver/test_simpletype.rb
r1520 r1541 31 31 def setup_server 32 32 @server = Server.new( 33 :BindAddress => "0.0.0.0", 33 34 :Port => Port, 34 35 :AccessLog => [], trunk/test/wsdl/map/test_map.rb
r1520 r1541 33 33 def setup_server 34 34 @server = Server.new( 35 :BindAddress => "0.0.0.0", 35 36 :Port => Port, 36 37 :AccessLog => [],