Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions test/basic_test.exs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
defmodule BasicTest do
use ExUnit.Case, async: true

test "the truth" do
assert 40 + 2 == 42
end

test "hmmm" do
IO.puts("abc")
end

describe "abc" do
test "def" do
IO.puts("aaa")
end
end
end