diff options
| author | nanalelfe <nargiza.nosirova@mail.utoronto.ca> | 2016-07-27 00:03:48 +0000 |
|---|---|---|
| committer | nanalelfe <nargiza.nosirova@mail.utoronto.ca> | 2016-07-27 00:03:48 +0000 |
| commit | 714368c049f8749ed22c6d1d07bb3adc783dc349 (patch) | |
| tree | 8952248ebf3f85b141ef0d18ecf6a1becdc8b89b /test/data/exam.json | |
| parent | 8beb37ed67b5f2fa0f9aa85499a8f11b39c9d067 (diff) | |
| parent | b65166302f5296165da115ed96ce112433157a2d (diff) | |
Merge branch 'master' of https://github.com/HumairAK/solutions_repo
Diffstat (limited to 'test/data/exam.json')
| -rw-r--r-- | test/data/exam.json | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/test/data/exam.json b/test/data/exam.json new file mode 100644 index 0000000..ac9c0dc --- /dev/null +++ b/test/data/exam.json @@ -0,0 +1,58 @@ +{ + "existing" : { + "_id": { + "$oid": "578a429640e1bf7e118a6b7b" + }, + "course_code": "CSC148", + "year": 2010, + "term": "fall", + "type": "midterm", + "instructors": [ + "Faith Ellen", + "Tom F." + ], + "page_count": 20, + "questions_count": 2, + "questions_list": [ + { + "q_id": 1, + "question": "this is q1" + }, + { + "q_id": 2, + "question": "this is q2" + } + ], + "upload_date": "some date", + "uploaded_by": "some user name" + }, + "nonExisting" : { + "_id": { + "$oid": "999999999999999999999999" + }, + "course_code": "CSC373", + "year": "2016", + "term": "Midterm", + "type": "Winter", + "instructors": [ + "Robert Dane" + ], + "page_count": "20", + "questions_count": "2", + "questions_list": [ + { + "q_id": 1, + "question": "Question 1" + }, + { + "q_id": 2, + "question": "Question 2" + } + ], + "upload_date": "2005-06-10", + "uploaded_by": [ + "humair", + "" + ] + } +}
\ No newline at end of file |
