1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

add a test.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15009 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2008-01-12 16:42:43 +00:00
parent 4261dd6ab7
commit b866ecbc42

View file

@ -89,3 +89,12 @@ assert_equal 'ok', %q{
end
END
}, '[ruby-core:14641]'
assert_equal 'true', %{
pid = fork {
exit t.status != "run"
}
Process.wait pid
$?.success?
}