#lang racket (module a racket (require test-engine/racket-tests) (check-expect 1 1) (test)) (module b racket (require test-engine/racket-tests) (check-expect 2 2) (test)) (require 'a 'b) This gives me: Welcome to DrRacket, version 6.2.900.3--2015-05-16(e8b52f6/a) [3m]. Language: racket [custom]; memory limit: 2000 MB. The only test passed! All 3 tests passed! Apparently test does not clear the list of tests already done. But even then I am surprised by seeing THREE tests passed. Without clearing the accumulated tests, I would expect: All TWO tests passed! Should test not eliminate the tests already done from the list of tests to be gathered in future? And how come (require 'a 'b) does THREE tests, not TWO? Is is not a big problem. I am just curious. Thanks, Jos
-- 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.