adding test case

This commit is contained in:
Jay McCarthy 2015-08-17 11:42:17 -04:00
parent a0118d6ccf
commit bf0c4812cd

View 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) ""))