summaryrefslogtreecommitdiffstats
path: root/newton/newton/settings.py
diff options
context:
space:
mode:
authorVictor Morales <victor.morales@intel.com>2017-09-18 09:55:52 -0700
committerVictor Morales <victor.morales@intel.com>2017-09-18 17:58:27 -0700
commitd4d563eea97f94742800531fe702597c3545b9c4 (patch)
treea6357b92bef51eaef1728586d4ab22c65790d88d /newton/newton/settings.py
parent2d2d9bed8b1990da7e0e763578684b0c1084c036 (diff)
Refactor Service UTs
The Unit tests that covers the get function of Service resource was generic, this change pretends to translate it to use cases. Change-Id: Iaec6d0751b5501612aebb240423da750bd56abff Signed-off-by: Victor Morales <victor.morales@intel.com> Issue-Id: MULTICLOUD-83
Diffstat (limited to 'newton/newton/settings.py')
-rw-r--r--newton/newton/settings.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/newton/newton/settings.py b/newton/newton/settings.py
index b62a584f..d460758c 100644
--- a/newton/newton/settings.py
+++ b/newton/newton/settings.py
@@ -12,6 +12,13 @@
import os
import sys
+DATABASES = {
+ 'default': {
+ 'ENGINE': 'django.db.backends.sqlite3',
+ 'NAME': 'mydatabase',
+ }
+}
+
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))