9 lines
135 B
Elixir
9 lines
135 B
Elixir
|
|
defmodule BeamJsTest do
|
||
|
|
use ExUnit.Case
|
||
|
|
doctest BeamJs
|
||
|
|
|
||
|
|
test "greets the world" do
|
||
|
|
assert BeamJs.hello() == :world
|
||
|
|
end
|
||
|
|
end
|