https://github.com/atsushisakai/clickapptest
A click based cli app test
https://github.com/atsushisakai/clickapptest
Last synced: 4 months ago
JSON representation
A click based cli app test
- Host: GitHub
- URL: https://github.com/atsushisakai/clickapptest
- Owner: AtsushiSakai
- License: mit
- Created: 2021-05-23T12:01:01.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-10-24T13:10:13.000Z (almost 4 years ago)
- Last Synced: 2025-02-26T10:39:30.630Z (8 months ago)
- Language: Shell
- Size: 22.5 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# clickapptest
A click based cli app test# How to install
Install stable release:
>$pip install git+https://github.com/AtsushiSakai/clickapptest.git@v0.1.1
Install master branch (This might be unstable)
>$ pip install git+https://github.com/AtsushiSakai/clickapptest.git
# Examples
>$ clickapptest
Usage: clickapptest [OPTIONS] COMMAND [ARGS]...This is a sample click test
Options:
--help Show this message and exit.Commands:
run-test1 run test1
run-test2 This is a command line tool for run test2>$ clickapptest run-test1 takashi
this is common
run test1 for takashi!!!
>$ clickapptest run-test2 -n 4
run test2!!!run test2!!!run test2!!!run test2!!!# Bash Completion
add this in your .bashrc
> eval "$(_CLICKAPPTEST_COMPLETE=bash_source clickapptest)"