mkatsoho / hspec-example

A Haskell/Hspec skeleton project

Home Page:http://hspec.github.io/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status

Running tests

First make sure that all dependencies are installed:

$ cabal install --only-dependencies --enable-tests

cabal

Just run

$ cabal test

and return code will indicate success or failure. However, you won't get nice test output.

runhaskell

If you want nice output you can use runhaskell:

$ runhaskell -isrc -itest test/Spec.hs

Alternatively, you can build and run the test suite manually:

$ cabal configure --enable-tests --disable-optimization && cabal build && ./dist/build/spec/spec

ghci

The fastest way to run your specs is with ghci. Make sure that .ghci is only writeable by you:

$ chmod go-w .ghci

Then you can run the specs with:

$ ghci test/Spec.hs
*Main> :main

After modifying code use:

*Main> :reload
*Main> :main

(note that the :reload will be much faster than loading the code initially, this makes a big difference for larger projects)

Cabal sandboxes

To use runhaskell or ghci with Cabal sandboxes, run it with cabal exec:

$ cabal exec ghci test/Spec.hs
*Main> :main
$ cabal exec -- runhaskell -isrc -itest test/Spec.hs

Stack

To use stack to run your tests, you can simply run:

$ stack setup && stack test

About

A Haskell/Hspec skeleton project

http://hspec.github.io/

License:MIT License


Languages

Language:Haskell 100.0%