aboutsummaryrefslogtreecommitdiffstats
path: root/test/soap
diff options
context:
space:
mode:
authornahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-01-29 02:54:21 +0000
committernahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-01-29 02:54:21 +0000
commita84fc19203ff904c14d8e81065e342e3fb82e59f (patch)
tree06e749b6d4def33b1b692192b7c28537a52afda3 /test/soap
parent877408163a4d8725c24073784a5fee8511fdeb1e (diff)
downloadruby-a84fc19203ff904c14d8e81065e342e3fb82e59f.tar.gz
* test/rss/test_*: do $: trick while searching a module in the current
directory. * test/xsd/test_xmlschemaparser.rb, test/wsdl/test_emptycomplextype.rb, test/soap/helloworld/test_helloworld.rb, test/soap/calc/{test_calc.rb,test_calc2.rb}: do File.expand_path before using __FILE__. * test/yaml/test_yaml.rb: assert_equals -> assert_equal. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5574 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/soap')
-rw-r--r--test/soap/calc/test_calc.rb2
-rw-r--r--test/soap/calc/test_calc2.rb2
-rw-r--r--test/soap/helloworld/test_helloworld.rb2
3 files changed, 3 insertions, 3 deletions
diff --git a/test/soap/calc/test_calc.rb b/test/soap/calc/test_calc.rb
index c917ddcf9e..f308977561 100644
--- a/test/soap/calc/test_calc.rb
+++ b/test/soap/calc/test_calc.rb
@@ -1,7 +1,7 @@
require 'test/unit'
require 'soap/rpc/driver'
-dir = File.dirname(__FILE__)
+dir = File.dirname(File.expand_path(__FILE__))
$:.push(dir)
require 'server.rb'
$:.delete(dir)
diff --git a/test/soap/calc/test_calc2.rb b/test/soap/calc/test_calc2.rb
index c066d374fb..457e770cc4 100644
--- a/test/soap/calc/test_calc2.rb
+++ b/test/soap/calc/test_calc2.rb
@@ -1,7 +1,7 @@
require 'test/unit'
require 'soap/rpc/driver'
-dir = File.dirname(__FILE__)
+dir = File.dirname(File.expand_path(__FILE__))
$:.push(dir)
require 'server2.rb'
$:.delete(dir)
diff --git a/test/soap/helloworld/test_helloworld.rb b/test/soap/helloworld/test_helloworld.rb
index 7261e42f19..9f6ed275ef 100644
--- a/test/soap/helloworld/test_helloworld.rb
+++ b/test/soap/helloworld/test_helloworld.rb
@@ -1,7 +1,7 @@
require 'test/unit'
require 'soap/rpc/driver'
-dir = File.dirname(__FILE__)
+dir = File.dirname(File.expand_path(__FILE__))
$:.push(dir)
require 'hw_s.rb'
$:.delete(dir)