aboutsummaryrefslogtreecommitdiffstats
path: root/examples/elixir_hello_world/test/elixir_hello_world_test.exs
blob: 2c14d6ce80d0299a87edd7f96428d1e8afd0b3d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
Code.require_file "../test_helper.exs", __FILE__

defmodule ElixirHelloWorldTest do
  use ExUnit.Case

  test "the truth" do
    assert true
  end
end