()
| 116 | |
| 117 | #[test] |
| 118 | fn build_rejects_no_attrs() { |
| 119 | let r = ArraySchemaBuilder::new("g") |
| 120 | .dim(int64_dim("d", 10)) |
| 121 | .tile_extents(vec![1]) |
| 122 | .build(); |
| 123 | assert!(r.is_err()); |
| 124 | } |
| 125 | |
| 126 | #[test] |
| 127 | fn build_rejects_extent_arity_mismatch() { |
nothing calls this directly
no test coverage detected