Skip to content

Instantly share code, notes, and snippets.

@sorentwo
Created May 17, 2016 20:57
Show Gist options
  • Save sorentwo/c89d8960732626384da992a5b38301ba to your computer and use it in GitHub Desktop.
Save sorentwo/c89d8960732626384da992a5b38301ba to your computer and use it in GitHub Desktop.
The same tests with different adapters
for adapter <- [Memory, Redis] do
@adapter adapter
setup_all do
Application.put_env(:flippant, :adapter, @adapter)
Application.ensure_started(:flippant)
on_exit fn ->
Application.stop(:flippant)
end
:ok
end
# tests
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment