Conditions | 1 |
Total Lines | 6 |
Lines | 0 |
Ratio | 0 % |
1 | # -*- coding: utf-8 -*- |
||
36 | def test_run(self): |
||
37 | self.converter.create_dump_list = Mock(return_value=[{"dumpListElement1"}, {"dumpListElement2"}]) |
||
38 | self.converter.write_dump_list_to_file = Mock() |
||
39 | self.converter.run("csvPath", "jsonPath") |
||
40 | self.converter.create_dump_list.assert_called_once_with("csvPath") |
||
41 | self.converter.write_dump_list_to_file.assert_called_once_with([{"dumpListElement1"}, {"dumpListElement2"}], "jsonPath") |