Is it possible in elixir to have my test modules in the same directory as the modules they are testing?
A typical Elixir project has a structure like this:
project
|-- lib
| `-- my_module.ex
`-- test
|-- my_module_test.exs
`-- test_helper.exs
When writing node projects I like to have my test modules next to the modules they are testing. This is easily configarable using tools like Jest:
project
|-- lib
| |-- my_module.ex
| `-- my_module.test.exs
`-- test
`-- test_helper.exs
Is it possible to have a similar setup in Elixir/Exunit?