junit-xml 0.1.0.0 → 0.1.0.1
raw patch · 3 files changed
+11/−7 lines, 3 filesdep ~tastyPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: tasty
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- junit-xml.cabal +3/−3
- src/Text/XML/JUnit.hs +4/−4
CHANGELOG.md view
@@ -1,3 +1,7 @@+# 0.1.0.1++- Expand version bounds to include tasty 1.3.+ # 0.1.0.0 - Initial implementation.
junit-xml.cabal view
@@ -4,10 +4,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: d9e612dfa72967ec95cd316447a563846b10fe23377c8b6bd3410890c64ab56d+-- hash: da921af1660cb968fd27fb14a85bb5264cf4ba37873600137376f5434834fd61 name: junit-xml-version: 0.1.0.0+version: 0.1.0.1 synopsis: Producing JUnit-style XML test reports. description: Please see the README at <https://github.com/jwoudenberg/junit-xml>. category: Web@@ -52,6 +52,6 @@ build-depends: base , junit-xml- , tasty >=1.1 && <1.3+ , tasty >=1.1 && <1.4 , tasty-golden >=2.3 && <2.4 default-language: Haskell2010
src/Text/XML/JUnit.hs view
@@ -197,7 +197,7 @@ -- & 'stdout' "Running test..." -- & 'stderr' "Test failed: expected 3 slices of pizza but got one." -- & 'failureMessage' "Not enough pizza"--- & 'failureStackTrace' ["Pizza", "Pizzeria", "Italy"]+-- & 'failureStackTrace' ["pizza", "pizzeria", "italy"] -- & 'time' 0.08 -- & 'inSuite' "Test suite" -- ]@@ -222,7 +222,7 @@ -- & 'stdout' "Running test..." -- & 'stderr' "Unexpected exception: BedTime" -- & 'errorMessage' "Operation canceled due to BedTimeOut"--- & 'errorStackTrace' ["Bed", "Sleep", "Night"]+-- & 'errorStackTrace' ["bed", "sleep", "night"] -- & 'time' 0.08 -- & 'inSuite' "Test suite" -- ]@@ -295,7 +295,7 @@ -- -- 'writeXmlReport' "report.xml" -- [ failed "A failing test"--- & failureStackTrace ["AnkleClass", "LegClass", "LimbClass"]+-- & failureStackTrace ["ankleClass", "legClass", "limbClass"] -- & 'inSuite' "Test suite" -- ] -- @@@ -324,7 +324,7 @@ -- -- 'writeXmlReport' "report.xml" -- [ errored "A test that threw an error"--- & errorMessage "TooMuchNetflixException"+-- & errorMessage "Too much Netflix" -- & 'inSuite' "Test suite" -- ] -- @