Created
September 7, 2017 14:04
-
-
Save weapp/9c1cd38699da8217f9f0b31f14dc35a9 to your computer and use it in GitHub Desktop.
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 PROJECT_NAME.MODULE_NAMETest do | |
use ExUnit.Case | |
alias PROJECT_NAME.MODULE_NAME | |
doctest MODULE_NAME | |
describe "description" do | |
setup do | |
%{ | |
foo: nil | |
} | |
end | |
test "description", %{foo: bar} do | |
assert bar == nil | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment