|
| 1 | +# Help |
| 2 | + |
| 3 | +## Running the tests |
| 4 | + |
| 5 | +## Clojure CLI |
| 6 | + |
| 7 | +The Clojure exercises on Exercism ship with a `deps.edn` file with a `:test` alias to invoke the [cognitect-labs test-runner](https://github.com/cognitect-labs/test-runner): |
| 8 | + |
| 9 | +``` bash |
| 10 | +$ clj -X:test |
| 11 | +``` |
| 12 | + |
| 13 | +## Leiningen |
| 14 | + |
| 15 | +Leiningen can also be used to run the exercise's test by running the following command from the exercise's directory: |
| 16 | + |
| 17 | +```bash |
| 18 | +lein test |
| 19 | +``` |
| 20 | + |
| 21 | +## REPL |
| 22 | + |
| 23 | +To use the REPL to run the exercise's test, run the following command from the exercise's directory: |
| 24 | + |
| 25 | +```bash |
| 26 | +$ clj |
| 27 | +``` |
| 28 | + |
| 29 | +-or- |
| 30 | + |
| 31 | +```bash |
| 32 | +$ lein repl |
| 33 | +``` |
| 34 | + |
| 35 | +Then `require` the exercise's test namespace and the Clojure test namespace): |
| 36 | + |
| 37 | +```clojure |
| 38 | +;; replace <exercise> with the exercise's name |
| 39 | +=> (require '<exercise>-test) |
| 40 | +``` |
| 41 | + |
| 42 | +Then call `run-tests` on `<exercise>-test`: |
| 43 | + |
| 44 | +```clojure |
| 45 | +;; replace <exercise> with the exercise's name |
| 46 | +=> (clojure.test/run-tests '<exercise>-test) |
| 47 | +``` |
| 48 | + |
| 49 | +## Submitting your solution |
| 50 | + |
| 51 | +You can submit your solution using the `exercism submit src/leap.clj` command. |
| 52 | +This command will upload your solution to the Exercism website and print the solution page's URL. |
| 53 | + |
| 54 | +It's possible to submit an incomplete solution which allows you to: |
| 55 | + |
| 56 | +- See how others have completed the exercise |
| 57 | +- Request help from a mentor |
| 58 | + |
| 59 | +## Need to get help? |
| 60 | + |
| 61 | +If you'd like help solving the exercise, check the following pages: |
| 62 | + |
| 63 | +- The [Clojure track's documentation](https://exercism.org/docs/tracks/clojure) |
| 64 | +- The [Clojure track's programming category on the forum](https://forum.exercism.org/c/programming/clojure) |
| 65 | +- [Exercism's programming category on the forum](https://forum.exercism.org/c/programming/5) |
| 66 | +- The [Frequently Asked Questions](https://exercism.org/docs/using/faqs) |
| 67 | + |
| 68 | +Should those resources not suffice, you could submit your (incomplete) solution to request mentoring. |
| 69 | + |
| 70 | +To get help if you're having trouble, you can use one of the following resources: |
| 71 | + |
| 72 | +- [Ask Clojure](https://ask.clojure.org/) Official forum for Clojure Q & A. |
| 73 | +- [ClojureDocs](https://clojuredocs.org) A repository of language references and examples by function or keyword. |
| 74 | +- [/r/clojure](https://www.reddit.com/r/clojure) is the Clojure subreddit. |
| 75 | +- [StackOverflow](http://stackoverflow.com/questions/tagged/clojure) can be used to search for your problem and see if it has been answered already. You can also ask and answer questions. |
| 76 | +- [Clojureverse](https://clojureverse.org/) Friendly and inclusive Clojure(Script) Community |
0 commit comments