https://github.com/krgn/mandrill
mandrill API client library in Haskell
https://github.com/krgn/mandrill
Last synced: 3 months ago
JSON representation
mandrill API client library in Haskell
- Host: GitHub
- URL: https://github.com/krgn/mandrill
- Owner: krgn
- License: mit
- Created: 2016-05-06T15:17:04.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-09-25T20:23:24.000Z (almost 10 years ago)
- Last Synced: 2025-03-21T08:17:40.167Z (over 1 year ago)
- Language: Haskell
- Size: 99.6 KB
- Stars: 0
- Watchers: 1
- 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