summaryrefslogtreecommitdiff
path: root/test/test_helper.exs
blob: f0625ca180c366750968ffc2d45c086ef5124ff0 (plain) (blame)
1
2
3
4
5
6
7
8
9
ExUnit.start()

{:ok, files} = File.ls("./test/support/")

Enum.each(files, fn file ->
  if String.match?(file, ~r/(.*).exs$/) do
    Code.require_file("support/#{file}", __DIR__)
  end
end)