Closed lejeunerenard closed 10 years ago
Solved #21
Decided to overwrite Test::Builder::note instead of writing our own subtest() without Test::Builder's planning features.
Test::Builder::note
subtest()
Also made a design decision to include not oks for subtests but not oks.
not ok
ok
Note:
skip_all
Also unintentionally fixed #16 since it now returns Test::Builder's original subtest value.
Test::Builder
Tried @osfameron code and # Success wasn't printed.
# Success
Solved #21
Decided to overwrite
Test::Builder::note
instead of writing our ownsubtest()
without Test::Builder's planning features.Also made a design decision to include
not ok
s for subtests but notok
s.Note:
skip_all
in subtests isn't pretty. It probably should be restyled.not ok
s from subtests are output at the same indent as other tests of the same level. Maybe this should be half indented like the subtest's name?