├── .github ├── dependabot.yml └── workflows │ └── build.yml ├── .gitignore ├── LICENCE ├── README.md ├── Setup.hs ├── changelog.md ├── images ├── failure.png └── success.png ├── src └── Test │ └── Tasty │ └── Hedgehog.hs ├── tasty-hedgehog.cabal └── test └── Main.hs /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qfpl/tasty-hedgehog/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qfpl/tasty-hedgehog/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qfpl/tasty-hedgehog/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qfpl/tasty-hedgehog/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qfpl/tasty-hedgehog/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qfpl/tasty-hedgehog/HEAD/changelog.md -------------------------------------------------------------------------------- /images/failure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qfpl/tasty-hedgehog/HEAD/images/failure.png -------------------------------------------------------------------------------- /images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qfpl/tasty-hedgehog/HEAD/images/success.png -------------------------------------------------------------------------------- /src/Test/Tasty/Hedgehog.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qfpl/tasty-hedgehog/HEAD/src/Test/Tasty/Hedgehog.hs -------------------------------------------------------------------------------- /tasty-hedgehog.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qfpl/tasty-hedgehog/HEAD/tasty-hedgehog.cabal -------------------------------------------------------------------------------- /test/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qfpl/tasty-hedgehog/HEAD/test/Main.hs --------------------------------------------------------------------------------