Wow this is awesome! Can you get to support rackunit too? I wanted to see if it could work for tests within (module+ test …), and it does (even though check-expect doesn’t, which is weird for check-expect but awesome for this), but while this works: #lang racket (require test-engine/racket-tests) (module+ test (check-expect (f 1) 1) ) (define (f x) 2) If I move the require form into the module+ test body, it says “test variant not defined": #lang racket (module+ test (require test-engine/racket-tests) (check-expect (f 1) 1) ) (define (f x) 2)
Alex Knauth On Apr 25, 2015, at 8:10 PM, Mira Leung <emailmirale...@gmail.com> wrote: > Racketeer is a plugin for DrRacket that integrates continuous testing with > Racket development. This is aimed primarily at the context of usage within > university-level programming courses, and has been tested on computer science > freshmen and senior students. > > Source and more info available at https://github.com/miraleung/racketeer > > Any comments, feedback, and questions appreciated! > > Thanks, > > Mira Leung -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to racket-users+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.