Skip to content

Instantly share code, notes, and snippets.

@dyoo
Created April 13, 2013 22:16
Show Gist options
  • Save dyoo/5380317 to your computer and use it in GitHub Desktop.
Save dyoo/5380317 to your computer and use it in GitHub Desktop.
#lang racket
(require rackunit
rackunit/text-ui)
(define tests
(test-suite
"my suite of tests"
(check-equal? (+ 1 1) 2)
(check-equal? (+ 1 1) 3)))
(run-tests tests 'verbose)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment