-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix direct function calls for nested group commands, add additional t…
…ests
- Loading branch information
Showing
11 changed files
with
275 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -111,10 +111,6 @@ | |
|
||
TIME_ZONE = "UTC" | ||
|
||
USE_I18N = True | ||
|
||
USE_L10N = True | ||
|
||
USE_TZ = True | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,12 @@ | ||
|
||
Usage: ./manage.py groups string STRING case lower [OPTIONS] [BEGIN] [END] | ||
Usage: ./manage.py groups string STRING case lower [OPTIONS] | ||
|
||
Convert the given string to upper case. | ||
|
||
╭─ Arguments ──────────────────────────────────────────────────────────────────╮ | ||
│ begin [BEGIN] The starting index of the string to operate on. │ | ||
│ [default: 0] │ | ||
│ end [END] The ending index of the string to operate on. │ | ||
│ [default: None] │ | ||
╰──────────────────────────────────────────────────────────────────────────────╯ | ||
╭─ Options ────────────────────────────────────────────────────────────────────╮ | ||
│ --help Show this message and exit. │ | ||
│ --begin INTEGER The starting index of the string to operate on. │ | ||
│ [default: 0] │ | ||
│ --end INTEGER The ending index of the string to operate on. │ | ||
│ [default: None] │ | ||
│ --help Show this message and exit. │ | ||
╰──────────────────────────────────────────────────────────────────────────────╯ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,12 @@ | ||
|
||
Usage: ./manage.py groups string STRING case lower [OPTIONS] [BEGIN] [END] | ||
Usage: ./manage.py groups string STRING case lower [OPTIONS] | ||
|
||
Convert the given string to upper case. | ||
|
||
╭─ Arguments ──────────────────────────────────────────────────────────────────╮ | ||
│ begin [BEGIN] The starting index of the string to operate on. │ | ||
│ [default: 0] │ | ||
│ end [END] The ending index of the string to operate on. │ | ||
│ [default: None] │ | ||
╰──────────────────────────────────────────────────────────────────────────────╯ | ||
╭─ Options ────────────────────────────────────────────────────────────────────╮ | ||
│ --help Show this message and exit. │ | ||
│ --begin INTEGER The starting index of the string to operate on. │ | ||
│ [default: 0] │ | ||
│ --end INTEGER The ending index of the string to operate on. │ | ||
│ [default: None] │ | ||
│ --help Show this message and exit. │ | ||
╰──────────────────────────────────────────────────────────────────────────────╯ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
Usage: ./manage.py groups setting SETTING print [OPTIONS] | ||
|
||
Print the setting value. | ||
|
||
╭─ Options ────────────────────────────────────────────────────────────────────╮ | ||
│ * --safe --no-safe Do not assume the setting exists. │ | ||
│ [default: no-safe] │ | ||
│ [required] │ | ||
│ --help Show this message and exit. │ | ||
╰──────────────────────────────────────────────────────────────────────────────╯ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
|
||
Usage: ./manage.py groups setting [OPTIONS] SETTING COMMAND [ARGS]... | ||
|
||
Get or set Django settings. | ||
|
||
╭─ Arguments ──────────────────────────────────────────────────────────────────╮ | ||
│ * setting TEXT The setting variable name. [default: None] │ | ||
│ [required] │ | ||
╰──────────────────────────────────────────────────────────────────────────────╯ | ||
╭─ Options ────────────────────────────────────────────────────────────────────╮ | ||
│ --help Show this message and exit. │ | ||
╰──────────────────────────────────────────────────────────────────────────────╯ | ||
╭─ Commands ───────────────────────────────────────────────────────────────────╮ | ||
│ print Print the setting value. │ | ||
╰──────────────────────────────────────────────────────────────────────────────╯ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.