(self, pytester: Pytester)
| 315 | assert f1 != f2 |
| 316 | |
| 317 | def test_repr_produces_actual_test_id(self, pytester: Pytester) -> None: |
| 318 | f = self.make_function( |
| 319 | pytester, name=r"test[\xe5]", callobj=self.test_repr_produces_actual_test_id |
| 320 | ) |
| 321 | assert repr(f) == r"<Function test[\xe5]>" |
| 322 | |
| 323 | def test_issue197_parametrize_emptyset(self, pytester: Pytester) -> None: |
| 324 | pytester.makepyfile( |
nothing calls this directly
no test coverage detected