name: doctest version: 0.6.1 synopsis: Test interactive Haskell examples description: The doctest program checks examples in source code comments. It is modeled after doctest for Python (). . Documentation is at . category: Testing bug-reports: https://github.com/sol/doctest-haskell/issues homepage: https://github.com/sol/doctest-haskell#readme license: MIT license-file: LICENSE copyright: (c) 2009-2012 Simon Hengel author: Simon Hengel maintainer: Simon Hengel build-type: Simple cabal-version: >= 1.8 source-repository head type: git location: https://github.com/sol/doctest-haskell library exposed-modules: Test.DocTest ghc-options: -Wall hs-source-dirs: src other-modules: Interpreter , Options , DocTest , Parse , Extract , GhcUtil , Paths_doctest build-depends: base >= 4.0 && < 4.6 , ghc >= 6.12 && < 7.6 , syb , deepseq , directory , process , ghc-paths == 0.1.* , HUnit == 1.2.* executable doctest main-is: Main.hs ghc-options: -Wall -threaded hs-source-dirs: src other-modules: Interpreter , Options , DocTest , Parse , Extract , GhcUtil , Paths_doctest build-depends: base >= 4.0 && < 4.6 , ghc >= 6.12 && < 7.6 , syb , deepseq , directory , process , ghc-paths == 0.1.* , HUnit == 1.2.* test-suite spec type: exitcode-stdio-1.0 main-is: Spec.hs ghc-options: -Wall -Werror -threaded hs-source-dirs: src, test build-depends: base >= 4.0 && < 4.6 , ghc >= 6.12 && < 7.6 , syb , deepseq , directory , process , ghc-paths == 0.1.* , HUnit == 1.2.* , hspec-shouldbe , transformers , stringbuilder , filepath