summaryrefslogtreecommitdiffstats
path: root/nova/test.py
diff options
context:
space:
mode:
authorVishvananda Ishaya <vishvananda@yahoo.com>2010-09-07 21:15:22 -0700
committerVishvananda Ishaya <vishvananda@yahoo.com>2010-09-07 21:15:22 -0700
commit36dd39d47dfd56ff1c83edde580b3136a77e4cec (patch)
tree8d9cb65d25cacfffcae673df528b594455d7acc7 /nova/test.py
parent5c8e3bb887a817372191f8d830f002013f274fd7 (diff)
downloadnova-36dd39d47dfd56ff1c83edde580b3136a77e4cec.tar.gz
nova-36dd39d47dfd56ff1c83edde580b3136a77e4cec.tar.xz
nova-36dd39d47dfd56ff1c83edde580b3136a77e4cec.zip
Last of cleanup, including removing fake_storage flage
Diffstat (limited to 'nova/test.py')
-rw-r--r--nova/test.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/nova/test.py b/nova/test.py
index 4eb5c1c53..c392c8a84 100644
--- a/nova/test.py
+++ b/nova/test.py
@@ -39,12 +39,6 @@ FLAGS = flags.FLAGS
flags.DEFINE_bool('fake_tests', True,
'should we use everything for testing')
-from sqlalchemy import create_engine
-from sqlalchemy.ext.declarative import declarative_base
-
-engine = create_engine('sqlite:///:memory:', echo=True)
-Base = declarative_base()
-Base.metadata.create_all(engine)
def skip_if_fake(func):
"""Decorator that skips a test if running in fake mode"""