IOSpec: A pure specification of the IO monad.

[ bsd3, library, testing ] [ Propose Tags ]

This package consists of several modules, that give a pure specification of functions in the IO monad:

Besides these modules containing the specifications, there are a few other important modules:

There are several well-documented examples included with the source distribution.


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.1, 0.1.1, 0.2, 0.2.1, 0.2.2, 0.2.3, 0.2.4, 0.2.5, 0.2.6, 0.3, 0.3.1, 0.3.1.1, 0.3.1.2
Dependencies base, mtl, QuickCheck (<2.0), Stream [details]
License BSD-3-Clause
Author Wouter Swierstra
Maintainer Wouter Swierstra <wss@cs.nott.ac.uk>
Category Testing
Home page http://www.cs.nott.ac.uk/~wss/repos/IOSpec
Uploaded by WouterSwierstra at 2008-02-05T14:06:34Z
Distributions Arch:0.3.1.2, Debian:0.3.1.1, Fedora:0.3.1.1, NixOS:0.3.1.2
Reverse Dependencies 3 direct, 0 indirect [details]
Downloads 13337 total (38 in the last 30 days)
Rating 2.0 (votes: 1) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for IOSpec-0.2

[back to package description]
IOSpec version 0.2
  Author: Wouter Swierstra <wss@cs.nott.ac.uk>

IOSpec provides a library containing pure, executable specifications
of a few functions from the IO monad. 

Build instructions:

    $ runhaskell Setup.lhs configure
    $ runhaskell Setup.lhs build
    $ runhaskell Setup.lhs install

See http://www.haskell.org/ghc/docs/latest/html/Cabal/builders.html
for more instructions.

Documentation:

Please have a look at the latest documentation available from:
  http://www.cs.nott.ac.uk/~wss/repos/IOSpec

To build the Haddock API execute the following command:
    $ runhaskell Setup.lhs haddock

This will require Haddock 2.0

Check out the examples directory for the following examples:

    * Echo.hs - illustrates how to test the echo function.
    * Queues.hs - an implementation of queues using IORefs.
    * Channels.hs - an implementation of channels using MVars.
    * Sudoku.hs - a parallel Sudoku solver that uses STM and MVars
         based on Graham Hutton's version of Richard Bird's "Solving Sudoku".

Every example contains quite some comments, explaining how to use
the library.