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

Version Path
trackler-2.1.0.24 tracks/erlang/SETUP.md
trackler-2.1.0.23 tracks/erlang/SETUP.md
trackler-2.1.0.22 tracks/erlang/SETUP.md
trackler-2.1.0.21 tracks/erlang/SETUP.md
trackler-2.1.0.20 tracks/erlang/SETUP.md
trackler-2.1.0.19 tracks/erlang/SETUP.md
trackler-2.1.0.18 tracks/erlang/SETUP.md
trackler-2.1.0.17 tracks/erlang/SETUP.md
trackler-2.1.0.16 tracks/erlang/SETUP.md
trackler-2.1.0.15 tracks/erlang/SETUP.md
trackler-2.1.0.14 tracks/erlang/SETUP.md
trackler-2.1.0.13 tracks/erlang/SETUP.md
trackler-2.1.0.12 tracks/erlang/SETUP.md
trackler-2.1.0.11 tracks/erlang/SETUP.md
trackler-2.1.0.10 tracks/erlang/SETUP.md
trackler-2.1.0.9 tracks/erlang/SETUP.md
trackler-2.1.0.8 tracks/erlang/SETUP.md
trackler-2.1.0.7 tracks/erlang/SETUP.md
trackler-2.1.0.6 tracks/erlang/SETUP.md
trackler-2.1.0.5 tracks/erlang/SETUP.md