├── .ghci ├── .gitattributes ├── .github └── workflows │ ├── build.yml │ ├── cabal-doctest.yml │ └── publish.yml ├── .gitignore ├── .mailmap ├── CHANGES.markdown ├── KNOWN_ISSUES ├── LICENSE ├── README.md ├── README.template.md ├── Setup.lhs ├── api ├── Test.DocTest ├── Test.DocTest.Internal.Extract ├── Test.DocTest.Internal.Location ├── Test.DocTest.Internal.Parse └── Test.DocTest.Internal.Run ├── bash_completion.d └── doctest-haskell ├── cabal.project ├── doc ├── Makefile ├── README.template.md └── example │ ├── cabal.project │ ├── fib.cabal │ └── src │ └── Fib.hs ├── doctest.cabal ├── driver ├── cabal-doctest.hs └── doctest.hs ├── example ├── example.cabal ├── src │ └── Example.hs └── test │ └── doctests.hs ├── hie.yaml ├── package.yaml ├── src ├── Cabal.hs ├── Cabal │ ├── Options.hs │ ├── Paths.hs │ └── ReplOptions.hs ├── Extract.hs ├── GhcUtil.hs ├── Imports.hs ├── Info.hs ├── Interpreter.hs ├── Language │ └── Haskell │ │ └── GhciWrapper.hs ├── Location.hs ├── Options.hs ├── PackageDBs.hs ├── Parse.hs ├── Property.hs ├── Run.hs ├── Runner.hs ├── Runner │ └── Example.hs ├── Test │ ├── DocTest.hs │ └── DocTest │ │ └── Internal │ │ ├── Cabal.hs │ │ ├── Extract.hs │ │ ├── Location.hs │ │ ├── Parse.hs │ │ └── Run.hs └── Util.hs └── test ├── Cabal ├── OptionsSpec.hs ├── PathsSpec.hs └── ReplOptionsSpec.hs ├── ExtractSpec.hs ├── InfoSpec.hs ├── InterpreterSpec.hs ├── Language └── Haskell │ └── GhciWrapperSpec.hs ├── LocationSpec.hs ├── MainSpec.hs ├── OptionsSpec.hs ├── PackageDBsSpec.hs ├── ParseSpec.hs ├── PropertySpec.hs ├── RunSpec.hs ├── Runner └── ExampleSpec.hs ├── RunnerSpec.hs ├── Spec.hs ├── UtilSpec.hs ├── extract ├── argument-list │ └── Foo.hs ├── comment-order │ └── Foo.hs ├── declaration │ └── Foo.hs ├── dos-line-endings │ └── Foo.hs ├── export-list │ └── Foo.hs ├── imported-module │ ├── Bar.hs │ └── Baz.hs ├── module-header │ └── Foo.hs ├── named-chunks │ └── Foo.hs ├── regression │ ├── Fixity.hs │ ├── ForeignImport.hs │ ├── ParallelListComp.hs │ ├── ParallelListCompClass.hs │ ├── RewriteRules.hs │ └── RewriteRulesWithSigs.hs ├── setup │ └── Foo.hs ├── th │ ├── Bar.hs │ └── Foo.hs ├── type-class-args │ └── Foo.hs ├── type-class │ └── Foo.hs └── type-families │ └── Foo.hs ├── integration ├── bugfixImportHierarchical │ ├── ModuleA.hs │ └── ModuleB.hs ├── bugfixMultipleModules │ ├── ModuleA.hs │ └── ModuleB.hs ├── bugfixOutputToStdErr │ └── Fib.hs ├── bugfixWorkingDirectory │ ├── Fib.hs │ ├── description │ └── examples │ │ └── Fib.hs ├── color │ └── Foo.hs ├── custom-package-conf │ ├── Bar.hs │ └── foo │ │ ├── Foo.hs │ │ └── doctest-foo.cabal ├── dos-line-endings │ └── Fib.hs ├── fail-fast │ ├── Bar.hs │ ├── Foo.hs │ ├── SetupBar.hs │ └── SetupFoo.hs ├── failing-multiple │ └── Foo.hs ├── failing │ └── Foo.hs ├── it │ ├── Foo.hs │ └── Setup.hs ├── local-stderr-binding │ └── A.hs ├── multiline │ └── Multiline.hs ├── parse-error │ └── Foo.hs ├── property-bool-with-type-signature │ └── Foo.hs ├── property-bool │ └── Foo.hs ├── property-failing │ └── Foo.hs ├── property-implicitly-quantified │ └── Foo.hs ├── property-quantified │ └── Foo.hs ├── property-setup │ └── Foo.hs ├── setup-skip-on-failure │ └── Foo.hs ├── setup │ └── Foo.hs ├── system-io-imported │ └── A.hs ├── template-haskell-bugfix │ ├── Main.hs │ └── Printf.hs ├── template-haskell │ └── Foo.hs ├── test-options │ └── Foo.hs ├── testBlankline │ └── Fib.hs ├── testCPP │ └── Foo.hs ├── testCombinedExample │ └── Fib.hs ├── testCommentLocation │ └── Foo.hs ├── testDocumentationForArguments │ └── Fib.hs ├── testFailOnMultiline │ └── Fib.hs ├── testImport │ ├── ModuleA.hs │ └── ModuleB.hs ├── testPutStr │ └── Fib.hs ├── testSimple │ └── Fib.hs ├── trailing-whitespace │ └── Foo.hs └── with-cbits │ ├── Bar.hs │ └── foo.c └── parse ├── multiple-examples └── Foo.hs ├── no-examples └── Fib.hs ├── non-exported └── Fib.hs ├── property └── Fib.hs ├── setup-empty └── Foo.hs ├── setup-only └── Foo.hs └── simple └── Fib.hs /.ghci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/.ghci -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/cabal-doctest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/.github/workflows/cabal-doctest.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/.mailmap -------------------------------------------------------------------------------- /CHANGES.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/CHANGES.markdown -------------------------------------------------------------------------------- /KNOWN_ISSUES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/KNOWN_ISSUES -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/README.md -------------------------------------------------------------------------------- /README.template.md: -------------------------------------------------------------------------------- 1 | doc/README.template.md -------------------------------------------------------------------------------- /Setup.lhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/Setup.lhs -------------------------------------------------------------------------------- /api/Test.DocTest: -------------------------------------------------------------------------------- 1 | doctest :: [String] -> IO () 2 | -------------------------------------------------------------------------------- /api/Test.DocTest.Internal.Extract: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/api/Test.DocTest.Internal.Extract -------------------------------------------------------------------------------- /api/Test.DocTest.Internal.Location: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/api/Test.DocTest.Internal.Location -------------------------------------------------------------------------------- /api/Test.DocTest.Internal.Parse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/api/Test.DocTest.Internal.Parse -------------------------------------------------------------------------------- /api/Test.DocTest.Internal.Run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/api/Test.DocTest.Internal.Run -------------------------------------------------------------------------------- /bash_completion.d/doctest-haskell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/bash_completion.d/doctest-haskell -------------------------------------------------------------------------------- /cabal.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/cabal.project -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/README.template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/doc/README.template.md -------------------------------------------------------------------------------- /doc/example/cabal.project: -------------------------------------------------------------------------------- 1 | packages: 2 | . 3 | -------------------------------------------------------------------------------- /doc/example/fib.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/doc/example/fib.cabal -------------------------------------------------------------------------------- /doc/example/src/Fib.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/doc/example/src/Fib.hs -------------------------------------------------------------------------------- /doctest.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/doctest.cabal -------------------------------------------------------------------------------- /driver/cabal-doctest.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/driver/cabal-doctest.hs -------------------------------------------------------------------------------- /driver/doctest.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/driver/doctest.hs -------------------------------------------------------------------------------- /example/example.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/example/example.cabal -------------------------------------------------------------------------------- /example/src/Example.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/example/src/Example.hs -------------------------------------------------------------------------------- /example/test/doctests.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/example/test/doctests.hs -------------------------------------------------------------------------------- /hie.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/hie.yaml -------------------------------------------------------------------------------- /package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/package.yaml -------------------------------------------------------------------------------- /src/Cabal.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/src/Cabal.hs -------------------------------------------------------------------------------- /src/Cabal/Options.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/src/Cabal/Options.hs -------------------------------------------------------------------------------- /src/Cabal/Paths.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/src/Cabal/Paths.hs -------------------------------------------------------------------------------- /src/Cabal/ReplOptions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/src/Cabal/ReplOptions.hs -------------------------------------------------------------------------------- /src/Extract.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/src/Extract.hs -------------------------------------------------------------------------------- /src/GhcUtil.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/src/GhcUtil.hs -------------------------------------------------------------------------------- /src/Imports.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/src/Imports.hs -------------------------------------------------------------------------------- /src/Info.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/src/Info.hs -------------------------------------------------------------------------------- /src/Interpreter.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/src/Interpreter.hs -------------------------------------------------------------------------------- /src/Language/Haskell/GhciWrapper.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/src/Language/Haskell/GhciWrapper.hs -------------------------------------------------------------------------------- /src/Location.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/src/Location.hs -------------------------------------------------------------------------------- /src/Options.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/src/Options.hs -------------------------------------------------------------------------------- /src/PackageDBs.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/src/PackageDBs.hs -------------------------------------------------------------------------------- /src/Parse.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/src/Parse.hs -------------------------------------------------------------------------------- /src/Property.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/src/Property.hs -------------------------------------------------------------------------------- /src/Run.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/src/Run.hs -------------------------------------------------------------------------------- /src/Runner.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/src/Runner.hs -------------------------------------------------------------------------------- /src/Runner/Example.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/src/Runner/Example.hs -------------------------------------------------------------------------------- /src/Test/DocTest.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/src/Test/DocTest.hs -------------------------------------------------------------------------------- /src/Test/DocTest/Internal/Cabal.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/src/Test/DocTest/Internal/Cabal.hs -------------------------------------------------------------------------------- /src/Test/DocTest/Internal/Extract.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/src/Test/DocTest/Internal/Extract.hs -------------------------------------------------------------------------------- /src/Test/DocTest/Internal/Location.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/src/Test/DocTest/Internal/Location.hs -------------------------------------------------------------------------------- /src/Test/DocTest/Internal/Parse.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/src/Test/DocTest/Internal/Parse.hs -------------------------------------------------------------------------------- /src/Test/DocTest/Internal/Run.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/src/Test/DocTest/Internal/Run.hs -------------------------------------------------------------------------------- /src/Util.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/src/Util.hs -------------------------------------------------------------------------------- /test/Cabal/OptionsSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/Cabal/OptionsSpec.hs -------------------------------------------------------------------------------- /test/Cabal/PathsSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/Cabal/PathsSpec.hs -------------------------------------------------------------------------------- /test/Cabal/ReplOptionsSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/Cabal/ReplOptionsSpec.hs -------------------------------------------------------------------------------- /test/ExtractSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/ExtractSpec.hs -------------------------------------------------------------------------------- /test/InfoSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/InfoSpec.hs -------------------------------------------------------------------------------- /test/InterpreterSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/InterpreterSpec.hs -------------------------------------------------------------------------------- /test/Language/Haskell/GhciWrapperSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/Language/Haskell/GhciWrapperSpec.hs -------------------------------------------------------------------------------- /test/LocationSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/LocationSpec.hs -------------------------------------------------------------------------------- /test/MainSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/MainSpec.hs -------------------------------------------------------------------------------- /test/OptionsSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/OptionsSpec.hs -------------------------------------------------------------------------------- /test/PackageDBsSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/PackageDBsSpec.hs -------------------------------------------------------------------------------- /test/ParseSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/ParseSpec.hs -------------------------------------------------------------------------------- /test/PropertySpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/PropertySpec.hs -------------------------------------------------------------------------------- /test/RunSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/RunSpec.hs -------------------------------------------------------------------------------- /test/Runner/ExampleSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/Runner/ExampleSpec.hs -------------------------------------------------------------------------------- /test/RunnerSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/RunnerSpec.hs -------------------------------------------------------------------------------- /test/Spec.hs: -------------------------------------------------------------------------------- 1 | {-# OPTIONS_GHC -F -pgmF hspec-discover #-} 2 | -------------------------------------------------------------------------------- /test/UtilSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/UtilSpec.hs -------------------------------------------------------------------------------- /test/extract/argument-list/Foo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/extract/argument-list/Foo.hs -------------------------------------------------------------------------------- /test/extract/comment-order/Foo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/extract/comment-order/Foo.hs -------------------------------------------------------------------------------- /test/extract/declaration/Foo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/extract/declaration/Foo.hs -------------------------------------------------------------------------------- /test/extract/dos-line-endings/Foo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/extract/dos-line-endings/Foo.hs -------------------------------------------------------------------------------- /test/extract/export-list/Foo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/extract/export-list/Foo.hs -------------------------------------------------------------------------------- /test/extract/imported-module/Bar.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/extract/imported-module/Bar.hs -------------------------------------------------------------------------------- /test/extract/imported-module/Baz.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/extract/imported-module/Baz.hs -------------------------------------------------------------------------------- /test/extract/module-header/Foo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/extract/module-header/Foo.hs -------------------------------------------------------------------------------- /test/extract/named-chunks/Foo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/extract/named-chunks/Foo.hs -------------------------------------------------------------------------------- /test/extract/regression/Fixity.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/extract/regression/Fixity.hs -------------------------------------------------------------------------------- /test/extract/regression/ForeignImport.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/extract/regression/ForeignImport.hs -------------------------------------------------------------------------------- /test/extract/regression/ParallelListComp.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/extract/regression/ParallelListComp.hs -------------------------------------------------------------------------------- /test/extract/regression/ParallelListCompClass.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/extract/regression/ParallelListCompClass.hs -------------------------------------------------------------------------------- /test/extract/regression/RewriteRules.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/extract/regression/RewriteRules.hs -------------------------------------------------------------------------------- /test/extract/regression/RewriteRulesWithSigs.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/extract/regression/RewriteRulesWithSigs.hs -------------------------------------------------------------------------------- /test/extract/setup/Foo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/extract/setup/Foo.hs -------------------------------------------------------------------------------- /test/extract/th/Bar.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/extract/th/Bar.hs -------------------------------------------------------------------------------- /test/extract/th/Foo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/extract/th/Foo.hs -------------------------------------------------------------------------------- /test/extract/type-class-args/Foo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/extract/type-class-args/Foo.hs -------------------------------------------------------------------------------- /test/extract/type-class/Foo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/extract/type-class/Foo.hs -------------------------------------------------------------------------------- /test/extract/type-families/Foo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/extract/type-families/Foo.hs -------------------------------------------------------------------------------- /test/integration/bugfixImportHierarchical/ModuleA.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/bugfixImportHierarchical/ModuleA.hs -------------------------------------------------------------------------------- /test/integration/bugfixImportHierarchical/ModuleB.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/bugfixImportHierarchical/ModuleB.hs -------------------------------------------------------------------------------- /test/integration/bugfixMultipleModules/ModuleA.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/bugfixMultipleModules/ModuleA.hs -------------------------------------------------------------------------------- /test/integration/bugfixMultipleModules/ModuleB.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/bugfixMultipleModules/ModuleB.hs -------------------------------------------------------------------------------- /test/integration/bugfixOutputToStdErr/Fib.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/bugfixOutputToStdErr/Fib.hs -------------------------------------------------------------------------------- /test/integration/bugfixWorkingDirectory/Fib.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/bugfixWorkingDirectory/Fib.hs -------------------------------------------------------------------------------- /test/integration/bugfixWorkingDirectory/description: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/bugfixWorkingDirectory/description -------------------------------------------------------------------------------- /test/integration/bugfixWorkingDirectory/examples/Fib.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/bugfixWorkingDirectory/examples/Fib.hs -------------------------------------------------------------------------------- /test/integration/color/Foo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/color/Foo.hs -------------------------------------------------------------------------------- /test/integration/custom-package-conf/Bar.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/custom-package-conf/Bar.hs -------------------------------------------------------------------------------- /test/integration/custom-package-conf/foo/Foo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/custom-package-conf/foo/Foo.hs -------------------------------------------------------------------------------- /test/integration/custom-package-conf/foo/doctest-foo.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/custom-package-conf/foo/doctest-foo.cabal -------------------------------------------------------------------------------- /test/integration/dos-line-endings/Fib.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/dos-line-endings/Fib.hs -------------------------------------------------------------------------------- /test/integration/fail-fast/Bar.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/fail-fast/Bar.hs -------------------------------------------------------------------------------- /test/integration/fail-fast/Foo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/fail-fast/Foo.hs -------------------------------------------------------------------------------- /test/integration/fail-fast/SetupBar.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/fail-fast/SetupBar.hs -------------------------------------------------------------------------------- /test/integration/fail-fast/SetupFoo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/fail-fast/SetupFoo.hs -------------------------------------------------------------------------------- /test/integration/failing-multiple/Foo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/failing-multiple/Foo.hs -------------------------------------------------------------------------------- /test/integration/failing/Foo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/failing/Foo.hs -------------------------------------------------------------------------------- /test/integration/it/Foo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/it/Foo.hs -------------------------------------------------------------------------------- /test/integration/it/Setup.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/it/Setup.hs -------------------------------------------------------------------------------- /test/integration/local-stderr-binding/A.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/local-stderr-binding/A.hs -------------------------------------------------------------------------------- /test/integration/multiline/Multiline.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/multiline/Multiline.hs -------------------------------------------------------------------------------- /test/integration/parse-error/Foo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/parse-error/Foo.hs -------------------------------------------------------------------------------- /test/integration/property-bool-with-type-signature/Foo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/property-bool-with-type-signature/Foo.hs -------------------------------------------------------------------------------- /test/integration/property-bool/Foo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/property-bool/Foo.hs -------------------------------------------------------------------------------- /test/integration/property-failing/Foo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/property-failing/Foo.hs -------------------------------------------------------------------------------- /test/integration/property-implicitly-quantified/Foo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/property-implicitly-quantified/Foo.hs -------------------------------------------------------------------------------- /test/integration/property-quantified/Foo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/property-quantified/Foo.hs -------------------------------------------------------------------------------- /test/integration/property-setup/Foo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/property-setup/Foo.hs -------------------------------------------------------------------------------- /test/integration/setup-skip-on-failure/Foo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/setup-skip-on-failure/Foo.hs -------------------------------------------------------------------------------- /test/integration/setup/Foo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/setup/Foo.hs -------------------------------------------------------------------------------- /test/integration/system-io-imported/A.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/system-io-imported/A.hs -------------------------------------------------------------------------------- /test/integration/template-haskell-bugfix/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/template-haskell-bugfix/Main.hs -------------------------------------------------------------------------------- /test/integration/template-haskell-bugfix/Printf.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/template-haskell-bugfix/Printf.hs -------------------------------------------------------------------------------- /test/integration/template-haskell/Foo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/template-haskell/Foo.hs -------------------------------------------------------------------------------- /test/integration/test-options/Foo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/test-options/Foo.hs -------------------------------------------------------------------------------- /test/integration/testBlankline/Fib.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/testBlankline/Fib.hs -------------------------------------------------------------------------------- /test/integration/testCPP/Foo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/testCPP/Foo.hs -------------------------------------------------------------------------------- /test/integration/testCombinedExample/Fib.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/testCombinedExample/Fib.hs -------------------------------------------------------------------------------- /test/integration/testCommentLocation/Foo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/testCommentLocation/Foo.hs -------------------------------------------------------------------------------- /test/integration/testDocumentationForArguments/Fib.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/testDocumentationForArguments/Fib.hs -------------------------------------------------------------------------------- /test/integration/testFailOnMultiline/Fib.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/testFailOnMultiline/Fib.hs -------------------------------------------------------------------------------- /test/integration/testImport/ModuleA.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/testImport/ModuleA.hs -------------------------------------------------------------------------------- /test/integration/testImport/ModuleB.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/testImport/ModuleB.hs -------------------------------------------------------------------------------- /test/integration/testPutStr/Fib.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/testPutStr/Fib.hs -------------------------------------------------------------------------------- /test/integration/testSimple/Fib.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/testSimple/Fib.hs -------------------------------------------------------------------------------- /test/integration/trailing-whitespace/Foo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/trailing-whitespace/Foo.hs -------------------------------------------------------------------------------- /test/integration/with-cbits/Bar.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/integration/with-cbits/Bar.hs -------------------------------------------------------------------------------- /test/integration/with-cbits/foo.c: -------------------------------------------------------------------------------- 1 | int foo() { 2 | return 23; 3 | } 4 | -------------------------------------------------------------------------------- /test/parse/multiple-examples/Foo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/parse/multiple-examples/Foo.hs -------------------------------------------------------------------------------- /test/parse/no-examples/Fib.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/parse/no-examples/Fib.hs -------------------------------------------------------------------------------- /test/parse/non-exported/Fib.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/parse/non-exported/Fib.hs -------------------------------------------------------------------------------- /test/parse/property/Fib.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/parse/property/Fib.hs -------------------------------------------------------------------------------- /test/parse/setup-empty/Foo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/parse/setup-empty/Foo.hs -------------------------------------------------------------------------------- /test/parse/setup-only/Foo.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/parse/setup-only/Foo.hs -------------------------------------------------------------------------------- /test/parse/simple/Fib.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sol/doctest/HEAD/test/parse/simple/Fib.hs --------------------------------------------------------------------------------