mirror of
https://github.com/pezkuwichain/serde.git
synced 2026-04-23 08:18:03 +00:00
Initial port of build_log
This commit is contained in:
@@ -679,15 +679,15 @@ mod tests {
|
||||
]);
|
||||
|
||||
test_parse_ok(vec![
|
||||
("[1]", (1u,)),
|
||||
("[1]", (1,)),
|
||||
]);
|
||||
|
||||
test_parse_ok(vec![
|
||||
("[1, 2]", (1u, 2u)),
|
||||
("[1, 2]", (1, 2)),
|
||||
]);
|
||||
|
||||
test_parse_ok(vec![
|
||||
("[1, 2, 3]", (1u, 2u, 3u)),
|
||||
("[1, 2, 3]", (1, 2, 3)),
|
||||
]);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user