hspec-discover 2.10.10 → 2.11.17
raw patch · 4 files changed
Files
- LICENSE +1/−1
- hspec-discover.cabal +4/−4
- src/Test/Hspec/Discover/Run.hs +2/−2
- version.yaml +7/−1
LICENSE view
@@ -1,4 +1,4 @@-Copyright (c) 2012-2023 Simon Hengel <sol@typeful.net>+Copyright (c) 2012-2026 Simon Hengel <sol@typeful.net> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal
hspec-discover.cabal view
@@ -1,14 +1,14 @@ cabal-version: 1.12 --- This file has been generated from package.yaml by hpack version 0.35.2.+-- This file has been generated from package.yaml by hpack version 0.39.1. -- -- see: https://github.com/sol/hpack name: hspec-discover-version: 2.10.10+version: 2.11.17 license: MIT license-file: LICENSE-copyright: (c) 2012-2023 Simon Hengel+copyright: (c) 2012-2026 Simon Hengel author: Simon Hengel <sol@typeful.net> maintainer: Simon Hengel <sol@typeful.net> build-type: Simple@@ -77,7 +77,7 @@ , directory , filepath , hspec-discover- , hspec-meta ==2.10.5+ , hspec-meta ==2.11.17 , mockery >=0.3.5 build-tool-depends: hspec-meta:hspec-meta-discover
src/Test/Hspec/Discover/Run.hs view
@@ -62,7 +62,7 @@ ( "{-# LINE 1 " . shows src . " #-}\n" . showString "{-# LANGUAGE NoImplicitPrelude #-}\n" . showString "{-# OPTIONS_GHC -w -Wall -fno-warn-warnings-deprecations #-}\n"- . showString ("module " ++ moduleName src conf ++" where\n")+ . showString ("module " ++ moduleName src conf ++ " where\n") . importList nodes . showString "import Test.Hspec.Discover\n" . maybe driver driverWithFormatter (configFormatter conf)@@ -86,7 +86,7 @@ pathToModule f = toUpper m:ms where fileName = last $ splitDirectories f- m:ms = takeWhile (/='.') fileName+ m:ms = takeWhile (/= '.') fileName driverWithFormatter :: String -> ShowS driverWithFormatter f =
version.yaml view
@@ -1,1 +1,7 @@-&version 2.10.10+version: &version 2.11.17+synopsis: A Testing Framework for Haskell+author: Simon Hengel <sol@typeful.net>+maintainer: Simon Hengel <sol@typeful.net>+category: Testing+stability: experimental+homepage: https://hspec.github.io/