grab-form 0.0.0.7 → 0.0.0.8
raw patch · 4 files changed
+31/−27 lines, 4 filesdep ~basedep ~hedgehogdep ~textPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base, hedgehog, text
API changes (from Hackage documentation)
Files
- changelog.md +4/−0
- grab-form.cabal +2/−2
- test/Main.hs +25/−0
- test/hedgehog.hs +0/−25
changelog.md view
@@ -15,3 +15,7 @@ ## 0.0.0.7 - 2022 March 14 Support base-4.16, hedgehog-1.1++## 0.0.0.8 - 2022 Jun 20++Fix build for case-insensitive file systems
grab-form.cabal view
@@ -1,7 +1,7 @@ cabal-version: 3.0 name: grab-form-version: 0.0.0.7+version: 0.0.0.8 synopsis: Applicative parsers for form parameter lists category: Text@@ -89,7 +89,7 @@ import: base type: exitcode-stdio-1.0 hs-source-dirs: test- main-is: hedgehog.hs+ main-is: Main.hs build-depends: containers ^>= 0.6
+ test/Main.hs view
@@ -0,0 +1,25 @@+{-# OPTIONS_GHC -Wall #-}++import qualified Test.OrgRoster.Tests+import qualified Test.Tutorial++import Control.Monad (when)++import System.IO (hSetEncoding, stdout, stderr, utf8)+import System.Exit (exitFailure)++import Hedgehog++main :: IO ()+main =+ do+ hSetEncoding stdout utf8+ hSetEncoding stderr utf8+ ok <- all id <$> traverse checkParallel testGroups+ when (not ok) exitFailure++ where+ testGroups =+ [ Test.Tutorial.testGroup+ , Test.OrgRoster.Tests.testGroup+ ]
− test/hedgehog.hs
@@ -1,25 +0,0 @@-{-# OPTIONS_GHC -Wall #-}--import qualified Test.OrgRoster.Tests-import qualified Test.Tutorial--import Control.Monad (when)--import System.IO (hSetEncoding, stdout, stderr, utf8)-import System.Exit (exitFailure)--import Hedgehog--main :: IO ()-main =- do- hSetEncoding stdout utf8- hSetEncoding stderr utf8- ok <- all id <$> traverse checkParallel testGroups- when (not ok) exitFailure-- where- testGroups =- [ Test.Tutorial.testGroup- , Test.OrgRoster.Tests.testGroup- ]