packages feed

tasty 1.1 → 1.1.0.1

raw patch · 3 files changed

+7/−2 lines, 3 files

Files

CHANGELOG.md view
@@ -1,6 +1,11 @@ Changes ======= +Version 1.1.0.1+---------------++Fix a bug where `-l` was still using `/` instead of `.` as a field separator+ Version 1.1 ----------- 
Test/Tasty/Ingredients/ListTests.hs view
@@ -31,7 +31,7 @@   foldTestTree     trivialFold       { foldSingle = \_opts name _test -> [name]-      , foldGroup = \groupName names -> map ((groupName ++ "/") ++) names+      , foldGroup = \groupName names -> map ((groupName ++ ".") ++) names       }  -- | The ingredient that provides the test listing functionality
tasty.cabal view
@@ -2,7 +2,7 @@ --  see http://haskell.org/cabal/users-guide/  name:                tasty-version:             1.1+version:             1.1.0.1 synopsis:            Modern and extensible testing framework description:         Tasty is a modern testing framework for Haskell.                      It lets you combine your unit tests, golden