(self)
| 1115 | self.b.get_key_for_group(None) |
| 1116 | |
| 1117 | def test_strip_prefix(self): |
| 1118 | x = self.b.get_key_for_task('x1b34') |
| 1119 | assert self.b._strip_prefix(x) == 'x1b34' |
| 1120 | assert self.b._strip_prefix('x1b34') == 'x1b34' |
| 1121 | |
| 1122 | def test_global_keyprefix(self): |
| 1123 | global_keyprefix = "test_global_keyprefix" |
nothing calls this directly
no test coverage detected