packages feed

HUnit-Plus 1.0.0 → 1.0.1

raw patch · 3 files changed

+8/−4 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

HUnit-Plus.cabal view
@@ -1,6 +1,6 @@ Name:                   HUnit-Plus Category:               Testing, Test-Version:                1.0.0+Version:                1.0.1 License:                BSD3 License-File:           LICENSE Author:                 Eric McCorkle
src/Test/HUnitPlus/Filter.hs view
@@ -268,11 +268,15 @@     in       Map.map (foldl1 combineSelectors . Set.elems) suiteMap +nameParser :: GenParser Char st Char+nameParser =+  oneOf "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+-_"+ namesParser :: GenParser Char st [String]-namesParser = sepBy1 (many1 alphaNum) (string ",")+namesParser = sepBy1 (many1 nameParser) (string ",")  pathParser :: GenParser Char st [String]-pathParser = sepBy (many1 alphaNum) (string ".")+pathParser = sepBy (many1 nameParser) (string ".")  suitesParser :: GenParser Char st [String] suitesParser = between (string "[") (string "]") namesParser
src/Test/HUnitPlus/Main.hs view
@@ -140,7 +140,7 @@     filters = []       &= args       &= typ "FILTERS"-  } &= summary "HUnit-Plus Standard Test Runner, v1.0.0"+  } &= summary "HUnit-Plus Standard Test Runner, v1.0.1"     &= program "runtests"     &= noAtExpand     &= details ["FILTERS specifies one or more test filters, which select " ++