(self)
| 2122 | assert Point.__module__ == "tests.unit.test_struct" |
| 2123 | |
| 2124 | def test_defstruct_empty(self): |
| 2125 | Empty = defstruct("Empty", []) |
| 2126 | assert as_tuple(Empty()) == () |
| 2127 | |
| 2128 | def test_defstruct_fields(self): |
| 2129 | Test = defstruct("Point", ["x", ("y", int), ("z", int, 0)]) |