* 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
This commit is contained in:
nahi 2004-01-29 02:54:21 +00:00
parent 877408163a
commit a84fc19203
14 changed files with 39 additions and 6 deletions

View file

@ -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)