1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

cli: fix unused callback in test_if_subcommands_parse_args (#7731)

This commit is contained in:
Alicia Woitte 2020-12-31 03:16:05 -05:00 committed by GitHub
parent 7ade1a966c
commit 9f3dd6e18f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,13 +24,13 @@ fn test_if_subcommands_parse_args() {
}
subcmd := cli.Command{
name: 'subcommand'
execute: empty_func
execute: if_subcommands_parse_args_func
}
cmd.add_command(subcmd)
cmd.parse(['command', 'subcommand', 'arg0', 'arg1'])
}
fn if_subcommands_parse_args_func(cmd cli.Command) {
fn if_subcommands_parse_args_func(cmd cli.Command) ? {
assert cmd.name == 'subcommand' && compare_arrays(cmd.args, ['arg0', 'arg1'])
}