Skip to content

Instantly share code, notes, and snippets.

@batate
Created March 6, 2015 15:01
Show Gist options
  • Save batate/1d8a331e29a8e7a37605 to your computer and use it in GitHub Desktop.
Save batate/1d8a331e29a8e7a37605 to your computer and use it in GitHub Desktop.
ExUnit and Duplication
setup do
# universal setup
end
test "a get" do
...
end
test "logged in get" do
login_user
...
end
test "logged in post" do
login_user
...
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment