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

Low Kian Seong picture Low Kian Seong · Feb 19, 2014 · Viewed 11k times · Source

In python's nosetests you can just specify to run one test by calling it's class followed by the test name, how can we do this with Elixir's ExUnit ?

Answer

José Valim picture José Valim · Feb 19, 2014

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