()
| 72 | |
| 73 | |
| 74 | def foo_schema(): |
| 75 | return schema( |
| 76 | [ |
| 77 | field("f1", int64()), |
| 78 | field("f2", utf8()), |
| 79 | field("f3", list_(utf8())), |
| 80 | field("f4", map_(utf8(), int64())), |
| 81 | field("f5", list_(int64())), |
| 82 | field("f6", int64()), |
| 83 | field("f7", struct([field("f1", int64()), field("f2", utf8())])), |
| 84 | ] |
| 85 | ) |
| 86 | |
| 87 | |
| 88 | def test_encode(): |
no test coverage detected