Search code examples
haskellcabalquickcheckhunit

Current state of integrating unit tests with Haskell's Cabal?


When i google for how to integrate unit tests with cabal files, i either find

How would you run all unit test using cabal (for example everytime i do a "cabal build") today?


Solution

    1. Make sure you have the latest version of Cabal and cabal-install installed.

    2. Have a test-suite section in your .cabal file. See this section of cabal's documentation for an explanation of how to write a test-suite section in your Cabal file and this section for instructions on how to run it.

    I've been using the built-in test support for some time and it has saved me from having to maintain fragile Makefiles just for my tests. There are still some rough edges in the command line output of cabal test, but they have been fixed in HEAD so in the next Cabal/cabal-install release everything should be very smooth.