test/functional/bio/test_command.rb in bio-2.0.4 vs test/functional/bio/test_command.rb in bio-2.0.5
- old
+ new
@@ -185,11 +185,13 @@
rescue NotImplementedError
# fork() not supported
return
end
assert_equal('', str.to_s.strip)
+ assert_equal('', err.to_s.strip)
str, err = Bio::Command.query_command_open3(ary, @data)
assert_equal(@sorted, str.to_s.strip.split(/\s+/))
+ assert_equal('', err.to_s.strip)
end
end #class FuncTestCommandQuery
class FuncTestCommandChdir < Test::Unit::TestCase
def setup