Changeset 1177
- Timestamp:
- 01/29/04 11:28:38 (5 years ago)
- Files:
-
- trunk/test/soap/calc/test_calc.rb (modified) (1 diff)
- trunk/test/soap/calc/test_calc2.rb (modified) (1 diff)
- trunk/test/soap/helloworld/test_helloworld.rb (modified) (1 diff)
- trunk/test/wsdl/test_emptycomplextype.rb (modified) (1 diff)
- trunk/test/xsd/test_xmlschemaparser.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/test/soap/calc/test_calc.rb
r1109 r1177 2 2 require 'soap/rpc/driver' 3 3 4 dir = File.dirname( __FILE__)4 dir = File.dirname(File.expand_path(__FILE__)) 5 5 $:.push(dir) 6 6 require 'server.rb' trunk/test/soap/calc/test_calc2.rb
r1145 r1177 2 2 require 'soap/rpc/driver' 3 3 4 dir = File.dirname( __FILE__)4 dir = File.dirname(File.expand_path(__FILE__)) 5 5 $:.push(dir) 6 6 require 'server2.rb' trunk/test/soap/helloworld/test_helloworld.rb
r1109 r1177 2 2 require 'soap/rpc/driver' 3 3 4 dir = File.dirname( __FILE__)4 dir = File.dirname(File.expand_path(__FILE__)) 5 5 $:.push(dir) 6 6 require 'hw_s.rb' trunk/test/wsdl/test_emptycomplextype.rb
r1059 r1177 8 8 class TestWSDL < Test::Unit::TestCase 9 9 def setup 10 @file = File.join(File.dirname( __FILE__), 'emptycomplextype.wsdl')10 @file = File.join(File.dirname(File.expand_path(__FILE__)), 'emptycomplextype.wsdl') 11 11 end 12 12 trunk/test/xsd/test_xmlschemaparser.rb
r1053 r1177 8 8 class TestXMLSchemaParser < Test::Unit::TestCase 9 9 def setup 10 @file = File.join(File.dirname( __FILE__), 'xmlschema.xml')10 @file = File.join(File.dirname(File.expand_path(__FILE__)), 'xmlschema.xml') 11 11 end 12 12