summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-02-12 07:51:05 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-02-12 07:51:05 +0000
commitc9fac6977bcea6d18a3d2e5abfb25dc29164c558 (patch)
treefd0501e3bae363bd3ff464dc072bb4ec7f5bd0ff /test
parentb760f18a9fa3a8e0ec14a52248b968dfd54e357e (diff)
merge revision(s) 34284:34286:
* lib/shellwords.rb: Fix rdoc markups. * lib/shellwords.rb (Shellwords#shellsplit): Fix a bug where consecutive backslashes in double quotes are all removed except the one at the tail. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@34571 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/test_shellwords.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/test_shellwords.rb b/test/test_shellwords.rb
index 593f0e0aea..bd44aec1af 100644
--- a/test/test_shellwords.rb
+++ b/test/test_shellwords.rb
@@ -38,6 +38,15 @@ class TestShellwords < Test::Unit::TestCase
end
end
+ def test_backslashes
+ cmdline, expected = [
+ %q{/a//b///c////d/////e/ "/a//b///c////d/////e/ "'/a//b///c////d/////e/ '/a//b///c////d/////e/ },
+ %q{a/b/c//d//e a/b/c//d//e /a//b///c////d/////e/ a/b/c//d//e }
+ ].map { |str| str.tr("/", "\\\\") }
+
+ assert_equal [expected], shellwords(cmdline)
+ end
+
def test_multibyte_characters
# This is not a spec. It describes the current behavior which may
# be changed in future. There would be no multibyte character