https://github.com/krgn/hamdrill
(unofficial) Haskell Mandrill API client
https://github.com/krgn/hamdrill
Last synced: over 1 year ago
JSON representation
(unofficial) Haskell Mandrill API client
- Host: GitHub
- URL: https://github.com/krgn/hamdrill
- Owner: krgn
- License: mit
- Created: 2014-09-05T15:50:56.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-09-29T12:38:10.000Z (almost 12 years ago)
- Last Synced: 2025-01-26T05:11:43.241Z (over 1 year ago)
- Language: Haskell
- Size: 457 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Mandrill API in Haskell
===========================
Tests
-----
Configure the project:
```sh
$ cabal configure --enable-tests
```
To run tests, either execute
```sh
$ cabal test --show-details=always --test-option=--color
```
or start the repl with the `spec` target like so:
```sh
$ cabal repl spec
```
Then, execute the test suite:
```sh
λ :main
..hack..hack.hack
λ :reload
λ :main
```
Or, if you like [`guard-haskell`][0], just install and run guard:
```sh
$ bundle
$ guard
```
Caveat: this will only work correctly if you have configured the project with
`--enable-test` as described above.
[0]: https://github.com/supki/guard-haskell