(self)
| 4749 | self.assertEqual(repr(block3), expected_repr_3) |
| 4750 | |
| 4751 | def test_Destination_repr(self): |
| 4752 | c = _make_clinic() |
| 4753 | |
| 4754 | destination = Destination( |
| 4755 | "foo", type="file", clinic=c, args=("eggs",) |
| 4756 | ) |
| 4757 | self.assertEqual( |
| 4758 | repr(destination), "<clinic.Destination 'foo' type='file' file='eggs'>" |
| 4759 | ) |
| 4760 | |
| 4761 | destination2 = Destination("bar", type="buffer", clinic=c) |
| 4762 | self.assertEqual(repr(destination2), "<clinic.Destination 'bar' type='buffer'>") |
| 4763 | |
| 4764 | def test_Module_repr(self): |
| 4765 | module = Module("foo", _make_clinic()) |
nothing calls this directly
no test coverage detected