mirror of
https://github.com/vlang/v.git
synced 2025-09-14 06:52:36 +03:00
cli: add Command.setup() (#7850)
This commit is contained in:
parent
a8741fdced
commit
e19277352b
3 changed files with 58 additions and 0 deletions
|
@ -145,6 +145,27 @@ fn test_if_global_flag_gets_set_in_subcommand() {
|
|||
cmd.parse(['command', '-flag', 'value', 'subcommand'])
|
||||
}
|
||||
|
||||
fn test_command_setup() {
|
||||
mut cmd := cli.Command{
|
||||
name: 'root'
|
||||
commands: [
|
||||
cli.Command{
|
||||
name: 'child'
|
||||
commands: [
|
||||
cli.Command{
|
||||
name: 'child-child'
|
||||
},
|
||||
]
|
||||
},
|
||||
]
|
||||
}
|
||||
assert isnil(cmd.commands[0].parent)
|
||||
assert isnil(cmd.commands[0].commands[0].parent)
|
||||
cmd.setup()
|
||||
assert cmd.commands[0].parent.name == 'root'
|
||||
assert cmd.commands[0].commands[0].parent.name == 'child'
|
||||
}
|
||||
|
||||
// helper functions
|
||||
fn empty_func(cmd cli.Command) ? {
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue