()
| 106 | |
| 107 | |
| 108 | def test_class_doc(): |
| 109 | pure_native = enum.IntEnum("pure_native", (("mem", 0),)) |
| 110 | assert m.smallenum.__doc__ == "doc smallenum" |
| 111 | assert m.color.__doc__ == pure_native.__doc__ |
| 112 | |
| 113 | |
| 114 | def test_member_doc(): |
nothing calls this directly
no outgoing calls
no test coverage detected