Re: [racket-users] What does `raco test file.rkt` do by default if no `test` submodule?

2018-09-06 Thread David Storrs
This isn't a direct answer to your question, but you might want to check out handy/test-more. Unlike the racket test system it always provides feedback on what tests have run and it will warn you if you did not run the expected number of tests. It also uses shorter names for the tests and each te

Re: [racket-users] What does `raco test file.rkt` do by default if no `test` submodule?

2018-09-06 Thread Greg Hendershott
> I am starting to use raco test for testing, and found out that in a file > without (module test ...), it may run some kind of test on the file. But for > some files, raco test reports that it ran a test, for others however no test > is run. > > Right now I am now adding a (module test racket/b

FW: [racket-users] Semaphore-count

2018-09-06 Thread Jos Koot
Ignore my email on this subject, please. It is wrong. 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 opt

[racket-users] What does `raco test file.rkt` do by default if no `test` submodule?

2018-09-06 Thread Marc Kaufmann
Hi, I am starting to use raco test for testing, and found out that in a file without (module test ...), it may run some kind of test on the file. But for some files, raco test reports that it ran a test, for others however no test is run. Right now I am now adding a (module test racket/base) a