summaryrefslogtreecommitdiff
path: root/test/test_helper.exs
blob: 2fc6291b9308220b00edb3e6cfdab05e050b7dbc (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