Sha256: b064b40de02457cd46cb0982e86ec380493411ad8b4d076a22881c2c05c01663
Contents?: true
Size: 904 Bytes
Versions: 41
Compression:
Stored size: 904 Bytes
Contents
## Running tests In order to run the tests, issue the following command from the exercise directory: ```bash $ rebar3 eunit ``` ### Test versioning Each problem defines a macro `TEST_VERSION` in the test file and verifies that the solution defines and exports a function `test_version` returning that same value. To make tests pass, add the following to your solution: ```erlang -export([test_version/0]). test_version() -> 1. ``` The benefit of this is that reviewers can see against which test version an iteration was written if, for example, a previously posted solution does not solve the current problem or passes current tests. ## Questions? For detailed information about the Erlang track, please refer to the [help page](http://exercism.io/languages/erlang) on the Exercism site. This covers the basic information on setting up the development environment expected by the exercises.
Version data entries
41 entries across 41 versions & 1 rubygems