DocTest 0.0.5 → 0.0.6
raw patch · 1 files changed
+22/−18 lines, 1 filesdep ~base
Dependency ranges changed: base
Files
- DocTest.cabal +22/−18
DocTest.cabal view
@@ -1,34 +1,38 @@ name: DocTest-version: 0.0.5+version: 0.0.6 stability: experimental synopsis: Test interactive Haskell examples description: DocTest checks examples in source code comments. It is modeled after doctest for Python (<http://docs.python.org/library/doctest.html>).- .- Documentation is at <http://haskell.org/haskellwiki/DocTest>.+ .+ Documentation is at <http://haskell.org/haskellwiki/DocTest>. category: Testing homepage: http://haskell.org/haskellwiki/DocTest-license: BSD3+license: MIT license-file: LICENSE author: Simon Hengel-maintainer: simon.hengel@web.de-build-depends:- base+maintainer: simon.hengel@wiktory.org+build-type: Simple+cabal-version: >= 1.6++source-repository head+ type: git+ location: http://code.haskell.org/~sih/code/DocTest.git/++executable doctest+ main-is: Main.hs+ other-modules:+ Test.DocTest+ , Test.DocTest.Error+ , Test.DocTest.Parser+ , Test.DocTest.Util++ build-depends:+ base >= 3 && < 5 , HUnit , parsec , haskell-src , directory , filepath , process-build-type: Simple--extra-source-files:- Test/DocTest.hs- , Test/DocTest/Error.hs- , Test/DocTest/Parser.hs- , Test/DocTest/Util.hs---executable: doctest-main-is: Main.hs