Commit 7aa25025 by Brian Wilson

Add mock to test requirements.

parent 126ae6f7
...@@ -66,6 +66,7 @@ class CourseEnrollEventMapTest(unittest.TestCase): ...@@ -66,6 +66,7 @@ class CourseEnrollEventMapTest(unittest.TestCase):
def test_missing_event_type(self): def test_missing_event_type(self):
event_dict = self._create_event_dict() event_dict = self._create_event_dict()
event_dict['old_event_type'] = event_dict['event_type']
del event_dict['event_type'] del event_dict['event_type']
line = json.dumps(event_dict) line = json.dumps(event_dict)
self.assert_no_output_for(line) self.assert_no_output_for(line)
......
nose nose==1.3.0
nose-ignore-docstring nose-ignore-docstring==0.2
coverage==3.7 coverage==3.7
pep8==1.4.5 pep8==1.4.5
pylint==0.28 pylint==0.28
diff-cover >= 0.2.1 diff-cover >= 0.2.1
mock==1.0.1
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment