Update the short description to match the text on the GitHub project

https://github.com/containers/toolbox/pull/814
This commit is contained in:
Debarshi Ray 2021-06-26 01:54:24 +02:00
parent 4536e2c8c2
commit d98f89aaa2
3 changed files with 4 additions and 4 deletions

View file

@ -1,7 +1,7 @@
% toolbox(1)
## NAME
toolbox - Unprivileged development environment
toolbox - Tool for containerized command line environments on Linux
## SYNOPSIS
**toolbox** [*--assumeyes* | *-y*]

View file

@ -45,7 +45,7 @@ var (
rootCmd = &cobra.Command{
Use: "toolbox",
Short: "Unprivileged development environment",
Short: "Tool for containerized command line environments on Linux",
PersistentPreRunE: preRun,
RunE: rootRun,
Version: version.GetVersion(),

View file

@ -16,14 +16,14 @@ load 'libs/helpers.bash'
run $TOOLBOX help
assert_success
assert_output --partial "toolbox - Unprivileged development environment"
assert_output --partial "toolbox - Tool for containerized command line environments on Linux"
}
@test "help: Use flag '--help' (it should show usage screen)" {
run $TOOLBOX --help
assert_success
assert_output --partial "toolbox - Unprivileged development environment"
assert_output --partial "toolbox - Tool for containerized command line environments on Linux"
}
@test "help: Try to run toolbox with non-existent command (shows usage screen)" {