Welcome to the "trac"-ing site of soap4r!
[soap4r] [httpclient] [openpgp4u] [pkcs1] [logger] [csv] [vtr]

Changeset 1177

Show
Ignore:
Timestamp:
01/29/04 11:28:38 (5 years ago)
Author:
nahi
Message:

* add 'File.expand_path' before using FILE.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/test/soap/calc/test_calc.rb

    r1109 r1177  
    22require 'soap/rpc/driver' 
    33 
    4 dir = File.dirname(__FILE__
     4dir = File.dirname(File.expand_path(__FILE__)
    55$:.push(dir) 
    66require 'server.rb' 
  • trunk/test/soap/calc/test_calc2.rb

    r1145 r1177  
    22require 'soap/rpc/driver' 
    33 
    4 dir = File.dirname(__FILE__
     4dir = File.dirname(File.expand_path(__FILE__)
    55$:.push(dir) 
    66require 'server2.rb' 
  • trunk/test/soap/helloworld/test_helloworld.rb

    r1109 r1177  
    22require 'soap/rpc/driver' 
    33 
    4 dir = File.dirname(__FILE__
     4dir = File.dirname(File.expand_path(__FILE__)
    55$:.push(dir) 
    66require 'hw_s.rb' 
  • trunk/test/wsdl/test_emptycomplextype.rb

    r1059 r1177  
    88class TestWSDL < Test::Unit::TestCase 
    99  def setup 
    10     @file = File.join(File.dirname(__FILE__), 'emptycomplextype.wsdl') 
     10    @file = File.join(File.dirname(File.expand_path(__FILE__)), 'emptycomplextype.wsdl') 
    1111  end 
    1212 
  • trunk/test/xsd/test_xmlschemaparser.rb

    r1053 r1177  
    88class TestXMLSchemaParser < Test::Unit::TestCase 
    99  def setup 
    10     @file = File.join(File.dirname(__FILE__), 'xmlschema.xml') 
     10    @file = File.join(File.dirname(File.expand_path(__FILE__)), 'xmlschema.xml') 
    1111  end 
    1212