Created
June 8, 2021 01:02
-
-
Save BrooklinJazz/7a4e7da6e5da14e8b6b40e38e6d80b4a to your computer and use it in GitHub Desktop.
Elixir use example with ExUnit.Case
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmodule AssertionTest do | |
use ExUnit.Case, async: true | |
test "always pass" do | |
assert true | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment