aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby/test_system.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_system.rb')
-rw-r--r--test/ruby/test_system.rb7
1 files changed, 2 insertions, 5 deletions
diff --git a/test/ruby/test_system.rb b/test/ruby/test_system.rb
index a3da43459f..da4deb5a04 100644
--- a/test/ruby/test_system.rb
+++ b/test/ruby/test_system.rb
@@ -1,4 +1,5 @@
require 'test/unit'
+require "#{File.dirname(File.expand_path(__FILE__))}/envutil"
$KCODE = 'none'
@@ -8,11 +9,7 @@ class TestSystem < Test::Unit::TestCase
end
def test_system
- if File.exist? "miniruby" or File.exist? "miniruby.exe"
- ruby = "./miniruby"
- else
- ruby = "ruby"
- end
+ ruby = EnvUtil.rubybin
assert_equal("foobar\n", `echo foobar`)
assert_equal('foobar', `#{ruby} -e 'print "foobar"'`)