(self)
| 1673 | })""") |
| 1674 | |
| 1675 | def test_expand_frozendict(self): |
| 1676 | dummy_frozendict = frozendict( |
| 1677 | {"foo": "bar", "baz": 123, "qux": [1, 2]} |
| 1678 | ) |
| 1679 | self.assertEqual( |
| 1680 | pprint.pformat(dummy_frozendict, width=20, indent=4, expand=True), |
| 1681 | """\ |
| 1682 | frozendict({ |
| 1683 | 'baz': 123, |
| 1684 | 'foo': 'bar', |
| 1685 | 'qux': [1, 2], |
| 1686 | })""", |
| 1687 | ) |
| 1688 | |
| 1689 | def test_expand_bytes(self): |
| 1690 | dummy_bytes = b"Hello world! foo bar baz 123 456 789" |
nothing calls this directly
no test coverage detected