Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
kamangir committed Nov 16, 2024
1 parent 8701522 commit 1da0a08
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,4 @@ create a copy of [`sample.env`](./abcli/sample.env) as `.env` and fill in the se

[![pylint](https://github.com/kamangir/awesome-bash-cli/actions/workflows/pylint.yml/badge.svg)](https://github.com/kamangir/awesome-bash-cli/actions/workflows/pylint.yml) [![pytest](https://github.com/kamangir/awesome-bash-cli/actions/workflows/pytest.yml/badge.svg)](https://github.com/kamangir/awesome-bash-cli/actions/workflows/pytest.yml) [![bashtest](https://github.com/kamangir/awesome-bash-cli/actions/workflows/bashtest.yml/badge.svg)](https://github.com/kamangir/awesome-bash-cli/actions/workflows/bashtest.yml) [![PyPI version](https://img.shields.io/pypi/v/abcli.svg)](https://pypi.org/project/abcli/) [![PyPI - Downloads](https://img.shields.io/pypi/dd/abcli)](https://pypistats.org/packages/abcli)

built by 🌀 [`blue_options-4.155.1`](https://github.com/kamangir/awesome-bash-cli), based on 🪄 [`abcli-9.415.1`](https://github.com/kamangir/awesome-bash-cli).
built by 🌀 [`blue_options-4.156.1`](https://github.com/kamangir/awesome-bash-cli), based on 🪄 [`abcli-9.416.1`](https://github.com/kamangir/awesome-bash-cli).
26 changes: 24 additions & 2 deletions abcli/.abcli/tests/list.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,30 @@ function test_abcli_list_next() {
that

abcli_assert \
$(abcli_list_next what what,which,this,that,something) \
something - empty
"$(abcli_list_next something what,which,this,that,something)" \
- empty

abcli_assert \
"$(abcli_list_next void what,which,this,that,something)" \
- empty
}

function test_abcli_list_prev() {
abcli_assert \
"$(abcli_list_prev what what,which,this,that,something)" \
- empty

abcli_assert \
$(abcli_list_prev this what,which,this,that,something) \
which

abcli_assert \
$(abcli_list_prev something what,which,this,that,something) \
that

abcli_assert \
"$(abcli_list_prev void what,which,this,that,something)" \
- empty
}

function test_abcli_list_resize() {
Expand Down
2 changes: 1 addition & 1 deletion abcli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

DESCRIPTION = f"{ICON} a language to speak AI."

VERSION = "9.415.1"
VERSION = "9.416.1"

REPO_NAME = "awesome-bash-cli"

Expand Down

0 comments on commit 1da0a08

Please sign in to comment.