adding test case
This commit is contained in:
parent
a0118d6ccf
commit
bf0c4812cd
12
rackunit-test/tests/rackunit/pr/5.rkt
Normal file
12
rackunit-test/tests/rackunit/pr/5.rkt
Normal file
|
@ -0,0 +1,12 @@
|
|||
#lang racket/base
|
||||
(module+ test
|
||||
(require rackunit
|
||||
racket/port
|
||||
rackunit/text-ui)
|
||||
|
||||
(define t (open-output-string))
|
||||
(parameterize ([current-error-port t])
|
||||
(run-tests
|
||||
(test-suite "x"
|
||||
(check-not-false (displayln 0)))))
|
||||
(check-equal? (get-output-string t) ""))
|
Loading…
Reference in New Issue
Block a user