diff options
author | mbeierl <mark.beierl@dell.com> | 2017-06-21 16:02:57 -0400 |
---|---|---|
committer | mbeierl <mark.beierl@dell.com> | 2017-06-26 13:00:01 -0400 |
commit | 45130c365c235bc4a5a53fd0ddb15f84a1460199 (patch) | |
tree | 0b4ea45f11d21d999256a50d081cb1ae9197a634 /tests/db_tests | |
parent | f8b67cf03ecbd4d6ab1fd115ef155d4334df266a (diff) |
Allow User to Specify Flavor
Adds flavor as parameter to ReST /configurations API and passes
it through to the heat template creation.
Change-Id: Id3632fb571da9da51b4d75db58c7a7c0a91e0ccf
JIRA: STORPERF-92
Signed-off-by: mbeierl <mark.beierl@dell.com>
Diffstat (limited to 'tests/db_tests')
-rw-r--r-- | tests/db_tests/configuration_db_test.py | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/tests/db_tests/configuration_db_test.py b/tests/db_tests/configuration_db_test.py index e8b7188..dda616b 100644 --- a/tests/db_tests/configuration_db_test.py +++ b/tests/db_tests/configuration_db_test.py @@ -10,17 +10,14 @@ from storperf.db.configuration_db import ConfigurationDB import os import unittest +import sqlite3 class ConfigurationDBTest(unittest.TestCase): def setUp(self): - ConfigurationDB.db_name = __name__ + ".db" - try: - os.remove(ConfigurationDB.db_name) - except OSError: - pass - + ConfigurationDB.db_name = "file::memory:?cache=shared" + db = sqlite3.connect(ConfigurationDB.db_name) self.config_db = ConfigurationDB() def test_create_key(self): |