Fix the test config to really use an in-memory database.

This commit is contained in:
Jake Moshenko 2014-07-02 19:10:40 -04:00
parent 5645b6da32
commit 8530e819d6

View file

@ -15,7 +15,7 @@ class FakeTransaction(object):
class TestConfig(DefaultConfig):
TESTING = True
DB_URL = 'sqlite:///:memory:'
DB_URI = 'sqlite:///:memory:'
DB_CONNECTION_ARGS = {}
@staticmethod