()
| 259 | |
| 260 | |
| 261 | def test_pretty_namedtuple_max_depth() -> None: |
| 262 | instance = {"unit": StockKeepingUnit("a", "b", 1.0, "c", ["d", "e"])} |
| 263 | result = pretty_repr(instance, max_depth=1) |
| 264 | assert result == "{'unit': StockKeepingUnit(...)}" |
| 265 | |
| 266 | |
| 267 | def test_small_width() -> None: |
nothing calls this directly
no test coverage detected