diff options
Diffstat (limited to '')
| -rw-r--r-- | clap.zig | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -403,7 +403,7 @@ test "clap.parse: short" { | |||
| 403 | testNoErr(clap, [][]const u8 { "-i=100" }, default.with("int", 100)); | 403 | testNoErr(clap, [][]const u8 { "-i=100" }, default.with("int", 100)); |
| 404 | testNoErr(clap, [][]const u8 { "-i", "100" }, default.with("int", 100)); | 404 | testNoErr(clap, [][]const u8 { "-i", "100" }, default.with("int", 100)); |
| 405 | testNoErr(clap, [][]const u8 { "-ab" }, default.with("a", true).with("b", true)); | 405 | testNoErr(clap, [][]const u8 { "-ab" }, default.with("a", true).with("b", true)); |
| 406 | testNoErr(clap, [][]const u8 { "-abi 100" }, default.with("a", true).with("b", true).with("int", 100)); | 406 | testNoErr(clap, [][]const u8 { "-abi", "100" }, default.with("a", true).with("b", true).with("int", 100)); |
| 407 | testNoErr(clap, [][]const u8 { "-abi=100" }, default.with("a", true).with("b", true).with("int", 100)); | 407 | testNoErr(clap, [][]const u8 { "-abi=100" }, default.with("a", true).with("b", true).with("int", 100)); |
| 408 | } | 408 | } |
| 409 | 409 | ||