tasty-smallcheck 0.2 → 0.8
raw patch · 3 files changed
+11/−4 lines, 3 filesdep ~basedep ~tasty
Dependency ranges changed: base, tasty
Files
- CHANGELOG +1/−0
- Test/Tasty/SmallCheck.hs +2/−2
- tasty-smallcheck.cabal +8/−2
+ CHANGELOG view
@@ -0,0 +1,1 @@+See https://github.com/feuerbach/tasty/blob/master/CHANGES.md
Test/Tasty/SmallCheck.hs view
@@ -70,8 +70,8 @@ return $ case scResult of- Nothing -> Result { resultSuccessful = True, resultDescription = desc }- Just f -> Result { resultSuccessful = False, resultDescription = ppFailure f }+ Nothing -> testPassed desc+ Just f -> testFailed $ ppFailure f -- Copied from base to stay compatible with GHC 7.4. myAtomicModifyIORef' :: IORef a -> (a -> (a,b)) -> IO b
tasty-smallcheck.cabal view
@@ -1,5 +1,5 @@ Name: tasty-smallcheck-Version: 0.2+Version: 0.8 Cabal-Version: >= 1.6 Category: Testing Synopsis: SmallCheck support for the Tasty test framework.@@ -11,11 +11,17 @@ Homepage: https://github.com/feuerbach/tasty Bug-reports: https://github.com/feuerbach/tasty/issues Build-Type: Simple+extra-source-files: CHANGELOG +Source-repository head+ type: git+ location: git://github.com/feuerbach/tasty.git+ subdir: smallcheck+ Library Exposed-Modules: Test.Tasty.SmallCheck - Build-Depends: tasty,+ Build-Depends: tasty >= 0.8, smallcheck >= 1.0, base >= 4 && < 5, async,