X-Git-Url: http://git.veekun.com/zzz-pokedex.git/blobdiff_plain/bd70b19c7408e29a74a15e1288db1821f58cf777..a7c3a96a07c76ede868bdcdf27c60ac527f0f556:/pokedex/tests/__init__.py diff --git a/pokedex/tests/__init__.py b/pokedex/tests/__init__.py index 29b7a56..8343e61 100644 --- a/pokedex/tests/__init__.py +++ b/pokedex/tests/__init__.py @@ -1,15 +1,6 @@ -import unittest - -from pokedex.lookup import open_index -from pokedex.db import connect -from pokedex.db.load import load - def setup(): - # Reload data just in case - session = connect() - load(session, verbose=False, drop_tables=True) - open_index(session=session, recreate=True) - + # XXX This needs to recreate the database, someday. :( + pass def teardown(): - print "teardown" + pass