1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* 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

@ -3,7 +3,10 @@
require "test/unit"
require "rss/parser"
require "rss/1.0"
dir = File.dirname(File.expand_path(__FILE__))
$:.push(dir)
require "common"
$:.delete(dir)
class TestParser < Test::Unit::TestCase
include TestRSSMixin