(self)
| 261 | ) |
| 262 | |
| 263 | def test_position(self): |
| 264 | args = (1, 2, "old", 3) |
| 265 | kwargs: Dict[str, Any] = dict() |
| 266 | self.assertEqual(self.replacer.get_old_value(args, kwargs), "old") |
| 267 | self.assertEqual( |
| 268 | self.replacer.replace("new", args, kwargs), |
| 269 | ("old", [1, 2, "new", 3], dict()), |
| 270 | ) |
| 271 | |
| 272 | def test_keyword(self): |
| 273 | args = (1,) |
nothing calls this directly
no test coverage detected