diff options
| author | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-01-29 02:54:21 +0000 |
|---|---|---|
| committer | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-01-29 02:54:21 +0000 |
| commit | 684338c2c2709593adde6afc6fcba164606b991b (patch) | |
| tree | 06e749b6d4def33b1b692192b7c28537a52afda3 /test/wsdl | |
| parent | 26a05404c54b6e6a7197b2bea0214346bbc57ed9 (diff) | |
| download | ruby-684338c2c2709593adde6afc6fcba164606b991b.tar.gz ruby-684338c2c2709593adde6afc6fcba164606b991b.tar.xz ruby-684338c2c2709593adde6afc6fcba164606b991b.zip | |
* 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: http://svn.ruby-lang.org/repos/ruby/trunk@5574 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/wsdl')
| -rw-r--r-- | test/wsdl/test_emptycomplextype.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/wsdl/test_emptycomplextype.rb b/test/wsdl/test_emptycomplextype.rb index 45136b417..0c21de8dd 100644 --- a/test/wsdl/test_emptycomplextype.rb +++ b/test/wsdl/test_emptycomplextype.rb @@ -7,7 +7,7 @@ module WSDL class TestWSDL < Test::Unit::TestCase def setup - @file = File.join(File.dirname(__FILE__), 'emptycomplextype.wsdl') + @file = File.join(File.dirname(File.expand_path(__FILE__)), 'emptycomplextype.wsdl') end def test_wsdl |
