0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-15 12:40:25 +00:00

Elixir hello world example

This commit is contained in:
Yurii Rashkovskii 2013-01-29 10:18:52 -08:00 committed by José Valim
parent ecb234693c
commit b69903435e
8 changed files with 112 additions and 0 deletions

View file

@ -0,0 +1,9 @@
Code.require_file "../test_helper.exs", __FILE__
defmodule ElixirHelloWorldTest do
use ExUnit.Case
test "the truth" do
assert true
end
end

View file

@ -0,0 +1 @@
ExUnit.start