diff options
Diffstat (limited to 'src-py/test_db_controller.py')
| -rw-r--r-- | src-py/test_db_controller.py | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src-py/test_db_controller.py b/src-py/test_db_controller.py index 1a73cb49..83818ee3 100644 --- a/src-py/test_db_controller.py +++ b/src-py/test_db_controller.py @@ -10,11 +10,13 @@ class TestDBController(unittest.TestCase): db_ctl = None log = None - n_map = { 'Skill': [{'name': 'kung fu', 'id': 'skill_00' }, - {'name': 'judo', 'id': 'skill_01' } - ], - 'Person': [{'name': 'Bob', 'id': 'person_00' }, - {'name': 'Alice', 'id': 'person_01' }] + n_map = { 'Skill': [{'name': 'Kung Fu', 'id': 'skill_00' }, + {'name': 'Judo', 'id': 'skill_01' } + ], + + 'Person': [{'name': 'Bob', 'id': 'person_00', 'age': 128 }, + {'name': 'Alice', 'id': 'person_01', 'age': 256 } + ] } @classmethod |
