Packages

Practical elixir codes and examples

Current section

Files

Jump to
practical_elixir test practical_elixir_test.exs
Raw

test/practical_elixir_test.exs

defmodule PracticalElixirTest do
use ExUnit.Case
doctest PracticalElixir
test "greets the world" do
assert PracticalElixir.hello() == :world
end
end