summaryrefslogtreecommitdiff
path: root/ruby_1_8_6/test/ruby/test_system.rb
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-07 07:38:25 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-07 07:38:25 +0000
commit9ff1e787f915539b1980654e3d3d2013ff5c81d2 (patch)
tree8d0fc9ca5b4dbfa9885dc56862292d55091bcaac /ruby_1_8_6/test/ruby/test_system.rb
parent441546edcfbb1b346c87b69c5f578d1a0e522e06 (diff)
wrong commit; sorryv1_8_6_269
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/tags/v1_8_6_269@17938 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ruby_1_8_6/test/ruby/test_system.rb')
-rw-r--r--ruby_1_8_6/test/ruby/test_system.rb67
1 files changed, 0 insertions, 67 deletions
diff --git a/ruby_1_8_6/test/ruby/test_system.rb b/ruby_1_8_6/test/ruby/test_system.rb
deleted file mode 100644
index 3513577ec5..0000000000
--- a/ruby_1_8_6/test/ruby/test_system.rb
+++ /dev/null
@@ -1,67 +0,0 @@
-require 'test/unit'
-$:.replace([File.dirname(File.expand_path(__FILE__))] | $:)
-require 'envutil'
-
-class TestSystem < Test::Unit::TestCase
- def valid_syntax?(code, fname)
- code = code.sub(/\A(?:\s*\#.*$)*(\n)?/n) {
- "#$&#{"\n" if $1 && !$2}BEGIN{return true}\n"
- }
- eval(code, nil, fname, 0)
- end
-
- def test_system
- ruby = EnvUtil.rubybin
- assert_equal("foobar\n", `echo foobar`)
- assert_equal('foobar', `#{ruby} -e 'print "foobar"'`)
-
- tmp = open("script_tmp", "w")
- tmp.print "print $zzz\n";
- tmp.close
-
- assert_equal('true', `#{ruby} -s script_tmp -zzz`)
- assert_equal('555', `#{ruby} -s script_tmp -zzz=555`)
-
- tmp = open("script_tmp", "w")
- tmp.print "#! /usr/local/bin/ruby -s\n";
- tmp.print "print $zzz\n";
- tmp.close
-
- assert_equal('678', `#{ruby} script_tmp -zzz=678`)
-
- tmp = open("script_tmp", "w")
- tmp.print "this is a leading junk\n";
- tmp.print "#! /usr/local/bin/ruby -s\n";
- tmp.print "print $zzz\n";
- tmp.print "__END__\n";
- tmp.print "this is a trailing junk\n";
- tmp.close
-
- assert_equal('nil', `#{ruby} -x script_tmp`)
- assert_equal('555', `#{ruby} -x script_tmp -zzz=555`)
-
- tmp = open("script_tmp", "w")
- for i in 1..5
- tmp.print i, "\n"
- end
- tmp.close
-
- `#{ruby} -i.bak -pe 'sub(/^[0-9]+$/){$&.to_i * 5}' script_tmp`
- tmp = open("script_tmp", "r")
- while tmp.gets
- assert_equal(0, $_.to_i % 5)
- end
- tmp.close
-
- File.unlink "script_tmp" or `/bin/rm -f "script_tmp"`
- File.unlink "script_tmp.bak" or `/bin/rm -f "script_tmp.bak"`
- end
-
- def test_syntax
- assert_nothing_raised(Exception) do
- for script in Dir[File.expand_path("../../../{lib,sample,ext}/**/*.rb", __FILE__)]
- valid_syntax? IO::read(script), script
- end
- end
- end
-end