tasty 0.5 → 0.5.1
raw patch · 3 files changed
+6/−3 lines, 3 files
Files
- Test/Tasty/Core.hs +4/−2
- Test/Tasty/Runners.hs +1/−0
- tasty.cabal +1/−1
Test/Tasty/Core.hs view
@@ -60,10 +60,12 @@ -- | The name of a test or a group of tests type TestName = String +-- | 'ResourceSpec' describes how to acquire a resource (the first field)+-- and how to release it (the second field). data ResourceSpec = forall a . ResourceSpec- (IO a) -- create/initialize the resource- (a -> IO ()) -- free the resource+ (IO a)+ (a -> IO ()) -- | The main data structure defining a test suite. --
Test/Tasty/Runners.hs view
@@ -4,6 +4,7 @@ -- * Working with the test tree TestTree(..) , foldTestTree+ , ResourceSpec(..) -- * Ingredients , Ingredient(..) , tryIngredients
tasty.cabal view
@@ -2,7 +2,7 @@ -- see http://haskell.org/cabal/users-guide/ name: tasty-version: 0.5+version: 0.5.1 synopsis: Modern and extensible testing framework description: See <http://documentup.com/feuerbach/tasty> license: MIT