Conditions | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 4 | ||
Bugs | 0 | Features | 0 |
1 | import unittest |
||
15 | def test_remove_searching(self): |
||
16 | data = self.pm.remove_searching(['SEARCHING...']) |
||
17 | self.assertEqual(data, []) |
||
18 | |||
19 | data = self.pm.remove_searching(['SEARCHING...', '410000000000']) |
||
20 | self.assertEqual(data, ['410000000000']) |
||
21 | |||
22 | # Exception - ValueError |
||
23 | data = self.pm.remove_searching(['410C34']) |
||
24 | self.assertEqual(data, ['410C34']) |
||
25 | |||
54 |