(self, pytester: Pytester)
| 383 | assert f1 != f2 |
| 384 | |
| 385 | def test_repr_produces_actual_test_id(self, pytester: Pytester) -> None: |
| 386 | f = self.make_function( |
| 387 | pytester, name=r"test[\xe5]", callobj=self.test_repr_produces_actual_test_id |
| 388 | ) |
| 389 | assert repr(f) == r"<Function test[\xe5]>" |
| 390 | |
| 391 | def test_issue197_parametrize_emptyset(self, pytester: Pytester) -> None: |
| 392 | pytester.makepyfile( |
nothing calls this directly
no test coverage detected