📅  最后修改于: 2022-03-11 14:56:30.349000             🧑  作者: Mango
# When you use a module,
# you allow that module to inject any code in the current module,
# such as importing itself or other modules,
# defining new functions,
# setting a module state, etc.
defmodule AssertionTest do
use ExUnit.Case, async: true
test "always pass" do
assert true
end
end