We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03b56f7 commit 53eacfbCopy full SHA for 53eacfb
2 files changed
bintest/mruby-cli.rb
@@ -40,6 +40,8 @@
40
41
output, status = Open3.capture2("rake test:mtest")
42
assert_true status.success?, "Process did not exit cleanly"
43
+ assert_false output.include?("Error:"), "mtest has errors"
44
+ assert_false output.include?("Failure:"), "mtest has failures"
45
end
46
47
mrblib/setup.rb
@@ -63,7 +63,7 @@ def test
63
<<TEST
64
class Test#{Util.camelize(@name)} < MTest::Unit::TestCase
65
def test_main
66
- assert_nil __main__
+ assert_nil __main__([])
67
68
69
0 commit comments