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?

link|improve this question

feedback

1 Answer

up vote 10 down vote accepted
  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 http://www.haskell.org/cabal/users-guide/#test-suites for an explanation of how to write a test-suite section in your Cabal file and http://www.haskell.org/cabal/users-guide/#setup-test 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.

link|improve this answer
cabal test doesn't have test suite drivers for most frameworks yet, though... :( – alternative Jul 22 '11 at 13:05
1  
Thanks. I am a bit unsure how HUnit and QuickCheck fit in there. – Lenny222 Jul 22 '11 at 15:34
1  
@Lenny222 They don't, yet. Use defaultMainWithHooks instead for the time being – alternative Jul 23 '11 at 23:09
2  
Thanks guys. And how about "test-framework"? It would be really great if someone having a good overview over the current testing situation could find the time to write up a clarifying blog post or something. – Lenny222 Jul 25 '11 at 7:11
3  
I'll try to write a blog post soonish. The setup I use is to have a test-suite stanza of type exitcode-stdio and use test-framework (with its bindings to QC and HUnit) to write the actual test code. Look at: github.com/tibbe/hashable/blob/master/hashable.cabal and github.com/tibbe/hashable/blob/master/tests/Properties.hs – tibbe Aug 3 '11 at 7:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.