test/tc/gzip.rb in rio-0.4.2 vs test/tc/gzip.rb in rio-0.5.1
- old
+ new
@@ -40,12 +40,14 @@
ans.string = ""
rio(?").gzip < src > ans
assert_equal(str,ans.string)
- ans.string = ""
- src | rio(?").gzip | ans
- assert_equal(str,ans.string)
+ # using files in the middle of a pipe not supported by fiber implementation
+ # of pipes
+ #ans.string = ""
+ #src | rio(?").gzip | ans
+ #assert_equal(str,ans.string)
end
def test_file
str = "Hello World"