TicTacToe in Clojure
Switch branches/tags
Nothing to show
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Failed to load latest commit information.
resources/public
src/tttclj
test/tttclj
.gitignore
LICENSE
README.md
project.clj

README.md

tttclj

This is a toy project for me to learn Clojure. (And relearn Emacs).

How to run the tests

The project uses Midje.

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.