Sha256: 7f89ccc09a46a35b046f0e8f1fb07dd04a92fbcb16163b639fd19c92a9dc777e

Contents?: true

Size: 627 Bytes

Versions: 2

Compression:

Stored size: 627 Bytes

Contents

## Running tests

Execute the tests with:

```bash
$ elixir bob_test.exs
```

(Replace `bob_test.exs` with the name of the test file.)


### Pending tests

In the test suites, all but the first test have been skipped.

Once you get a test passing, you can unskip the next one by
commenting out the relevant `@tag :pending` with a `#` symbol.

For example:

```elixir
# @tag :pending
test "shouting" do
  assert Bob.hey("WATCH OUT!") == "Whoa, chill out!"
end
```

Or, you can enable all the tests by commenting out the
`ExUnit.configure` line in the test suite.

```elixir
# ExUnit.configure exclude: :pending, trace: true
```

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
trackler-1.0.1.0 tracks/elixir/docs/TESTS.md
trackler-1.0.0.1 tracks/elixir/docs/TESTS.md