[plt-scheme] Exposing non-exported module variable bindings.

From: David Van Horn (dvanhorn at cs.uvm.edu)
Date: Sun Dec 14 23:03:38 EST 2003

David Van Horn wrote:
> In which case your test could be written:
> 
> (require mod)
> (in-module mod
>   (test/text-ui
>     (make-test-suite ... a ... b ...)))

Oops, that's not quite right.  The schemeunit bindings won't be visible in
mod.  You'd have to write:

(require mod)
(test/text-ui
  (make-test-suite ... (in-module a) ... (in-module b) ...)))

-d





Posted on the users mailing list.