Closed typester closed 12 years ago
prove -Pretty -lv against following code will print All 1 subtests passed! But expect FAIL
prove -Pretty -lv
All 1 subtests passed
use strict; use warnings; use Test::More; subtest 'hoge' => sub { ok 1; die; ok 2; }; done_testing;
prove -Pretty -lv
against following code will printAll 1 subtests passed
! But expect FAIL