diff options
| author | keiju <keiju@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-11-13 05:55:27 +0000 |
|---|---|---|
| committer | keiju <keiju@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-11-13 05:55:27 +0000 |
| commit | 4e6681683f330019eafddae597171204f2cf107a (patch) | |
| tree | 01fcf39f7fea5b82b7761fecea94bf3c7cada0b4 /lib/shell/command-processor.rb | |
| parent | 471742d6afd5d0d5e8f4a09570024cb56003f55f (diff) | |
* shell/command-processor.rb: undefined method `top_level_test' in
Shell#test. [ruby-list:45634]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@20231 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/shell/command-processor.rb')
| -rw-r--r-- | lib/shell/command-processor.rb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/shell/command-processor.rb b/lib/shell/command-processor.rb index ecf6c7d5eb..b0e4fb70db 100644 --- a/lib/shell/command-processor.rb +++ b/lib/shell/command-processor.rb @@ -155,6 +155,7 @@ class Shell # sh[:exists?, "foo"] # sh["exists?", "foo"] # + alias top_level_test test def test(command, file1, file2=nil) file1 = expand_path(file1) file2 = expand_path(file2) if file2 @@ -162,7 +163,11 @@ class Shell case command when Integer - top_level_test(command, file1, file2) + if file2 + top_level_test(command, file1, file2) + else + top_level_test(command, file1) + end when String if command.size == 1 if file2 |
