summaryrefslogtreecommitdiffstats
path: root/test/pathname
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-08-24 09:57:53 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-08-24 09:57:53 +0000
commit320553cda48fac77e8cc2284b10b0f091a51722e (patch)
treea6cd8b6ecfb5e2f52f04cbbe29e4fd9f3adbd59e /test/pathname
parenta9d73d360df0d3bc6b738cb10858ae63f24f847a (diff)
downloadruby-320553cda48fac77e8cc2284b10b0f091a51722e.tar.gz
ruby-320553cda48fac77e8cc2284b10b0f091a51722e.tar.xz
ruby-320553cda48fac77e8cc2284b10b0f091a51722e.zip
* test/ruby/test_dir.rb (TestDir::setup): ?c now makes a string.
* lib/test/unit/autorunner.rb (Test::Unit::AutoRunner::initialize): initialize @workdir to stop warning. * lib/drb/drb.rb (DRb::DRbServer::InvokeMethod::perform_without_block): replace funcall by send!. other files in the distribution as well. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13244 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/pathname')
-rw-r--r--test/pathname/test_pathname.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/pathname/test_pathname.rb b/test/pathname/test_pathname.rb
index ecf7a71be..21a3ba68a 100644
--- a/test/pathname/test_pathname.rb
+++ b/test/pathname/test_pathname.rb
@@ -12,7 +12,7 @@ class TestPathname < Test::Unit::TestCase
if RUBY_VERSION < "1.9"
FUNCALL = :__send__
else
- FUNCALL = :funcall
+ FUNCALL = :send!
end
def self.define_assertion(name, &block)