Skip to content

Instantly share code, notes, and snippets.

@weapp
Created September 7, 2017 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save weapp/9c1cd38699da8217f9f0b31f14dc35a9 to your computer and use it in GitHub Desktop.
Save weapp/9c1cd38699da8217f9f0b31f14dc35a9 to your computer and use it in GitHub Desktop.
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