Current section

Files

Jump to
walex lib mix tasks database tear_down_test_database.ex
Raw

lib/mix/tasks/database/tear_down_test_database.ex

defmodule Mix.Tasks.TearDownTestDatabase do
use Mix.Task
alias Mix.Tasks.Helpers
@test_database "todos_test"
@shortdoc "Tear down test database and tables"
def run(_) do
Mix.Task.run("app.start")
Helpers.drop_database(@test_database)
end
end