(self)
| 709 | self.assert_class_defs_not_shareable(defs) |
| 710 | |
| 711 | def test_nested_class(self): |
| 712 | eggs = defs.EggsNested() |
| 713 | with self.assertRaises(NotShareableError): |
| 714 | self.get_roundtrip(eggs) |
| 715 | |
| 716 | # functions |
| 717 |
nothing calls this directly
no test coverage detected