Initial port of build_log

This commit is contained in:
Erick Tryzelaar
2015-01-18 10:05:13 -08:00
parent cc40b0ec5e
commit f7eb082339
5 changed files with 171 additions and 206 deletions
+3 -3
View File
@@ -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)),
]);
}