test-framework 0.8.0.2 → 0.8.0.3
raw patch · 3 files changed
+6/−4 lines, 3 files
Files
- Test/Framework/Runners/Console.hs +3/−1
- Test/Framework/Runners/XML/JUnitWriter.hs +1/−1
- test-framework.cabal +2/−2
Test/Framework/Runners/Console.hs view
@@ -1,3 +1,5 @@+{-# OPTIONS_GHC -fno-warn-orphans #-}+ module Test.Framework.Runners.Console ( defaultMain, defaultMainWithArgs, defaultMainWithOpts, SuppliedRunnerOptions, optionsDescription,@@ -169,7 +171,7 @@ where showTest :: String -> Test -> [String] showTest path (Test name _testlike) = [" "++path ++ name]- showTest path (TestGroup name tests) = concatMap (showTest (path++":"++name)) tests+ showTest path (TestGroup name gtests) = concatMap (showTest (path++":"++name)) gtests showTest path (PlusTestOptions _ test) = showTest path test showTest path (BuildTestBracketed _) = [" "++path ++ "<created at runtime>"]
Test/Framework/Runners/XML/JUnitWriter.hs view
@@ -58,7 +58,7 @@ , ("name", id . suiteName) , ("tests", show . testCount) , ("time", show . time)- , ("timeStamp", fromMaybe "" . timeStamp)+ , ("timestamp", fromMaybe "" . timeStamp) , ("id", fromMaybe "" . runId) , ("package", fromMaybe "" . package) ]
test-framework.cabal view
@@ -1,5 +1,5 @@ Name: test-framework-Version: 0.8.0.2+Version: 0.8.0.3 Cabal-Version: >= 1.6 Category: Testing Synopsis: Framework for running and organising tests, with HUnit and QuickCheck support@@ -25,6 +25,7 @@ Test.Framework.Providers.API Test.Framework.Runners.Console Test.Framework.Runners.Options+ Test.Framework.Runners.TestPattern Test.Framework.Runners.API Test.Framework.Seed @@ -39,7 +40,6 @@ Test.Framework.Runners.Core Test.Framework.Runners.Processors Test.Framework.Runners.Statistics- Test.Framework.Runners.TestPattern Test.Framework.Runners.ThreadPool Test.Framework.Runners.TimedConsumption Test.Framework.Runners.XML.JUnitWriter