summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/test_open3.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/test_open3.rb b/test/test_open3.rb
index 406f39b50d..f8fb249559 100644
--- a/test/test_open3.rb
+++ b/test/test_open3.rb
@@ -60,6 +60,7 @@ class TestOpen3 < Test::Unit::TestCase
end
def test_commandline
+ skip "Shellwords is not supported" if /mswin|mingw/ =~ RUBY_PLATFORM
commandline = Shellwords.join([RUBY, '-e', 'print "quux"'])
Open3.popen3(commandline) {|i,o,e,t|
assert_equal("quux", o.read)