https://github.com/grierson/mastermind
My implementation of Mastermind from CleanCoders.com
https://github.com/grierson/mastermind
clj midje
Last synced: 3 months ago
JSON representation
My implementation of Mastermind from CleanCoders.com
- Host: GitHub
- URL: https://github.com/grierson/mastermind
- Owner: grierson
- Created: 2020-12-21T22:49:47.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2020-12-23T16:09:58.000Z (over 4 years ago)
- Last Synced: 2025-01-20T06:16:37.528Z (4 months ago)
- Topics: clj, midje
- Language: Clojure
- Homepage: https://cleancoders.com/episode/clean-code-episode-54
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mastermind
The project uses [Midje](https://github.com/marick/Midje/).
## How to run the tests
`lein midje` will run all tests.
`lein midje namespace.*` will run only tests beginning with "namespace.".
`lein midje :autotest` will run all the tests indefinitely. It sets up a
watcher on the code files. If they change, only the relevant tests will be
run again.