Last active
December 16, 2015 13:08
-
-
Save dyoo/5439462 to your computer and use it in GitHub Desktop.
Make rackunit noisy.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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