Skip to content

Instantly share code, notes, and snippets.

@dyoo
Last active December 16, 2015 13:08
Show Gist options
  • Save dyoo/5439462 to your computer and use it in GitHub Desktop.
Save dyoo/5439462 to your computer and use it in GitHub Desktop.
Make rackunit noisy.
#lang racket
(require rackunit)
(current-check-around (let ([original-check-around (current-check-around)])
(lambda (f)
(printf "Running test...\n")
(original-check-around f))))
(check-equal? (+ 1 1) 2)
(check-equal? (+ 1 1) 2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment