(self, l, m, r, output)
| 813 | |
| 814 | class ClinicGroupPermuterTest(TestCase): |
| 815 | def _test(self, l, m, r, output): |
| 816 | computed = permute_optional_groups(l, m, r) |
| 817 | self.assertEqual(output, computed) |
| 818 | |
| 819 | def test_range(self): |
| 820 | self._test([['start']], ['stop'], [['step']], |
no test coverage detected