In Elixir's ExUnit, is it possible to just run one test?

elixir

Solution

You can now do `mix test path/to/test.exs:13`, where 13 is the line of the test.

Problem

In Python's nosetests you can just specify to run one test by calling its class followed by the test name. How can we do this with Elixir's ExUnit?

Original source