summaryrefslogtreecommitdiff
path: root/spec/ruby/library/shellwords/shellwords_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/library/shellwords/shellwords_spec.rb')
-rw-r--r--spec/ruby/library/shellwords/shellwords_spec.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/spec/ruby/library/shellwords/shellwords_spec.rb b/spec/ruby/library/shellwords/shellwords_spec.rb
index aa35c1a5c3..f8ab0cbd9d 100644
--- a/spec/ruby/library/shellwords/shellwords_spec.rb
+++ b/spec/ruby/library/shellwords/shellwords_spec.rb
@@ -26,4 +26,11 @@ describe "Shellwords#shellwords" do
it "raises ArgumentError when single quoted strings are misquoted" do
lambda { shellwords("a 'b c d e") }.should raise_error(ArgumentError)
end
+
+ ruby_version_is '2.4' do
+ # https://bugs.ruby-lang.org/issues/10055
+ it "matches POSIX sh behavior for backslashes within double quoted strings" do
+ shellsplit('printf "%s\n"').should == ['printf', '%s\n']
+ end
+ end
end