Fix problem with peer grading list not rendering, test

This commit is contained in:
Vik Paruchuri
2013-09-12 15:17:04 -04:00
parent 009017fe07
commit 640b7fe6b5
3 changed files with 49 additions and 15 deletions

View File

@@ -94,9 +94,9 @@ class MockPeerGradingService(object):
'success': True,
'submission_id': 1,
'submission_key': "",
'student_response': 'fake student response',
'prompt': 'fake submission prompt',
'rubric': 'fake rubric',
'student_response': 'Sample student response.',
'prompt': 'Sample submission prompt.',
'rubric': 'Placeholder text for the full rubric.',
'max_score': 4
}
@@ -110,9 +110,9 @@ class MockPeerGradingService(object):
return {'success': True,
'submission_id': 1,
'submission_key': '',
'student_response': 'fake student response',
'prompt': 'fake submission prompt',
'rubric': 'fake rubric',
'student_response': 'Sample student response.',
'prompt': 'Sample submission prompt.',
'rubric': 'Placeholder text for the full rubric.',
'max_score': 4}
def save_calibration_essay(self, **kwargs):