[plt-scheme] Re: schemeunit check stuff changed?
One more from the docs that seems fishy: can you help me again?
When I run this:
(require (planet "text-ui.ss" ("schematics" "schemeunit.plt" 2))
(planet "test.ss" ("schematics" "schemeunit.plt" 2 6)))
(test/text-ui
(test-case
"Example"
(check = (+ 1 1) 2)
(check string=? (symbol->string 'foo) "foo")))
I get this output:
1 success(es) 0 failure(s) 0 error(s) 1 test(s) run
But it seems like there are two tests in there. If I make them both
bad, then I only see the first failure.
I geuss that's intentional?
Robby