Sha256: f3472025985aa0c5b40dda50ed479ad85f69d37d8839e202f2c3440695087b0d

Contents?: true

Size: 877 Bytes

Versions: 7

Compression:

Stored size: 877 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 this test 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 pass 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

7 entries across 7 versions & 1 rubygems

Version Path
trackler-2.0.8.39 tracks/erlang/SETUP.md
trackler-2.0.8.38 tracks/erlang/SETUP.md
trackler-2.0.8.37 tracks/erlang/SETUP.md
trackler-2.0.8.36 tracks/erlang/SETUP.md
trackler-2.0.8.35 tracks/erlang/SETUP.md
trackler-2.0.8.34 tracks/erlang/SETUP.md
trackler-2.0.8.33 tracks/erlang/SETUP.md