unison/unison-src/transcripts/io-test-command.md
2024-06-25 11:11:07 -07:00

846 B

scratch/main> builtins.merge

The io.test command should run all of the tests within the current namespace, excluding libs.

-- We manually specify types so we don't need to pull in base to run IO and such
ioAndExceptionTest : '{IO, Exception} [Result]
ioAndExceptionTest = do 
  [Ok "Success"]

ioTest : '{IO} [Result]
ioTest = do 
  [Ok "Success"]

lib.ioAndExceptionTestInLib  : '{IO, Exception} [Result]
lib.ioAndExceptionTestInLib  = do 
  [Ok "Success"]
scratch/main> add

Run a IO tests one by one

scratch/main> io.test ioAndExceptionTest
scratch/main> io.test ioTest

io.test doesn't cache results

scratch/main> io.test ioAndExceptionTest

io.test.all will run all matching tests except those in the lib namespace.

scratch/main> io.test.all