DocTest
From HaskellWiki
(Difference between revisions)
m (added section "State of DocTest") |
m |
||
| Line 38: | Line 38: | ||
==State of DocTest== | ==State of DocTest== | ||
| - | DocTest is in | + | DocTest development is in an early stage. Patches are welcome! |
==DocTest on Hackage== | ==DocTest on Hackage== | ||
Revision as of 12:08, 22 March 2009
Contents |
1 What is DocTest
DocTest is a small program, that checks examples in Haskell source code comments. It is modeled after doctest for Python.
2 Tutorial
Bellow is a small Haskell module. The module contains source code comments. Those comments are examples from an interactive Haskell session and demonstrate how the module is used.
module Fib where -- Examples: -- -- > fib 10 -- 55 -- > fib 5 -- 5 fib 0 = 0 fib 1 = 1 fib n = fib (n - 1) + fib (n - 2)
With DocTest you may checks if the implementation satisfies the given examples, by typing (on your Unix shell):
$ doctest Fib.hs
-- >
All comment lines following an expression denote the result of that expression. Result is defined by what an REPL
(e.g. ghci) prints tostdout
stderror
evaluating that expression.
3 State of DocTest
DocTest development is in an early stage. Patches are welcome!
4 DocTest on Hackage
http://hackage.haskell.org/cgi-bin/hackage-scripts/package/DocTest
