Difference between revisions of "Checkers"

From HaskellWiki
Jump to navigation Jump to search
 
(moved to github)
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
[[Category:Packages]]
 
[[Category:Packages]]
   
  +
Content moved [https://github.com/conal/checkers to github].
== Abstract ==
 
 
'''checkers''' is a library for reusable QuickCheck properties, particularly for standard type classes (class laws and [http://conal.net/papers/simply-reactive class morphisms]). For instance, most of [[Reactive]] can be specified and tested using just these properties. Checkers also lots of support for randomly generating data values (thanks to Thomas Davie).
 
 
Besides this wiki page, here are more ways to find out about checkers:
 
* Read [http://code.haskell.org/checkers/doc/html/ the library documentation]. ''(Missing until haddock is ready for ghc-6.9.)''
 
* Get the code repository: '''<tt>darcs get http://code.haskell.org/checkers</tt>'''.
 
* Install from [http://hackage.haskell.org/cgi-bin/hackage-scripts/package/checkers Hackage].
 
* See the [[checkers/Versions| version history]].
 
 
Please leave comments at the [[Talk:checkers|Talk page]].
 

Latest revision as of 19:41, 3 January 2013


Content moved to github.