mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
flag: add .usage_example/1, .footer/1, .remaining_parameters/0 and tests
This commit is contained in:
13
vlib/flag/testdata/usage_example.help.out
vendored
Normal file
13
vlib/flag/testdata/usage_example.help.out
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
xyz 0.0.2
|
||||
-----------------------------------------------
|
||||
Usage: xyz [NUMBER]...
|
||||
or: xyz OPTION
|
||||
|
||||
Description: description line 1
|
||||
description line 2
|
||||
|
||||
Options:
|
||||
-h, --help display this help and exit
|
||||
--version output version information and exit
|
||||
footer 1
|
||||
footer 2
|
1
vlib/flag/testdata/usage_example.out
vendored
Normal file
1
vlib/flag/testdata/usage_example.out
vendored
Normal file
@ -0,0 +1 @@
|
||||
[vlib/flag/testdata/usage_example.v:16] rest_of_args: ['abc', 'def']
|
17
vlib/flag/testdata/usage_example.v
vendored
Normal file
17
vlib/flag/testdata/usage_example.v
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
import os
|
||||
import flag
|
||||
|
||||
fn main() {
|
||||
mut fp := flag.new_flag_parser(os.args)
|
||||
fp.skip_executable()
|
||||
fp.application('xyz')
|
||||
fp.version('0.0.2')
|
||||
fp.usage_example('[NUMBER]...')
|
||||
fp.usage_example('OPTION')
|
||||
fp.description('description line 1')
|
||||
fp.description('description line 2')
|
||||
fp.footer('footer 1')
|
||||
fp.footer('footer 2')
|
||||
rest_of_args := fp.remaining_parameters()
|
||||
dump(rest_of_args)
|
||||
}
|
1
vlib/flag/testdata/usage_example.version.out
vendored
Normal file
1
vlib/flag/testdata/usage_example.version.out
vendored
Normal file
@ -0,0 +1 @@
|
||||
xyz 0.0.2
|
Reference in New Issue
Block a user