doctest-discover 0.1.0.0 → 0.1.0.1
raw patch · 2 files changed
+18/−15 lines, 2 files
Files
- doctest-discover.cabal +18/−13
- src/Runner.hs +0/−2
doctest-discover.cabal view
@@ -2,9 +2,9 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: doctest-discover-version: 0.1.0.0+version: 0.1.0.1 synopsis: Easy way to run doctests via cabal-description: doctest-discover makes it easy to run doctests via cabal+description: This is for dev testing purposes only. A new version will be available soon license: PublicDomain license-file: LICENSE author: Karun Ramakrishnan@@ -13,17 +13,22 @@ build-type: Simple cabal-version: >=1.10 +library+ default-language: Haskell2010+ build-depends: base >=4.6 && <4.7, doctest, directory, filepath, temporary+ HS-Source-Dirs: src+ executable doctest-discover- default-language: Haskell2010- build-depends: base >=4.6 && <4.7, doctest, directory, filepath, temporary- main-is: Main.hs - other-modules: Runner- HS-Source-Dirs: src+ default-language: Haskell2010+ build-depends: base >=4.6 && <4.7, doctest, directory, filepath, temporary+ main-is: Main.hs + other-modules: Runner+ HS-Source-Dirs: src test-suite doctests- default-language: Haskell2010- type: exitcode-stdio-1.0- ghc-options: -threaded- main-is: Doctest-Main.hs- build-depends: base >4 && <5, doctest- HS-Source-Dirs: test+ default-language: Haskell2010+ type: exitcode-stdio-1.0+ ghc-options: -threaded+ main-is: Doctest-Main.hs+ build-depends: base >4 && <5, doctest+ HS-Source-Dirs: test
src/Runner.hs view
@@ -2,8 +2,6 @@ generateConfig ) where -import Test.DocTest-import System.Directory import Data.List import System.FilePath.Posix