Skip to content

Commit

Permalink
tests(erase): clearer notes
Browse files Browse the repository at this point in the history
  • Loading branch information
olets committed Jul 31, 2024
1 parent e25ab3f commit 81325a7
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions tests/abbr-erase.ztr.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ main() {
abbr erase ${test_abbr_abbreviation}^
ztr test '(( ${#ABBR_REGULAR_USER_ABBREVIATIONS} == 0 ))' \
"Can erase an abbreviation ending in a caret" \
"Dependencies: add, erase. Issues: 118"
"Dependencies: add, erase. GitHub issues: #118"

# TODO
# See
Expand All @@ -33,7 +33,7 @@ main() {
abbr erase ^$test_abbr_abbreviation
ztr test '(( ${#ABBR_REGULAR_USER_ABBREVIATIONS} == 0 ))' \
"Can erase an abbreviation starting with a caret" \
"Dependencies: add, erase. Issues: 118"
"Dependencies: add, erase. GitHub issues: #118"

# TODO
# See
Expand All @@ -42,7 +42,7 @@ main() {
abbr erase ${test_abbr_abbreviation}^${test_abbr_abbreviation}
ztr test '(( ${#ABBR_REGULAR_USER_ABBREVIATIONS} == 0 ))' \
"Can erase an abbreviation with an embedded caret" \
"Dependencies: add, erase. Issues: 118"
"Dependencies: add, erase. GitHub issues: #118"

# TODO
# See
Expand All @@ -52,7 +52,7 @@ main() {
abbr erase $test_abbr_abbreviation'!'
ztr test '(( ${#ABBR_REGULAR_USER_ABBREVIATIONS} == 0 ))' \
"Can erase an abbreviation ending in an escaped exclamation point" \
"Dependencies: add, erase. Issues: 84, 118"
"Dependencies: add, erase. GitHub issues: #84, #118"

# @TODO
# See
Expand All @@ -62,7 +62,7 @@ main() {
abbr erase \!$test_abbr_abbreviation
ztr test '(( ${#ABBR_REGULAR_USER_ABBREVIATIONS} == 0 ))' \
"Can erase an abbreviation starting with an escaped exclamation point" \
"Dependencies: add, erase. Issues: 84, 118"
"Dependencies: add, erase. GitHub issues: #84, #118"

# @TODO
# See
Expand All @@ -72,7 +72,7 @@ main() {
abbr erase '!'$test_abbr_abbreviation
ztr test '(( ${#ABBR_REGULAR_USER_ABBREVIATIONS} == 0 ))' \
"Can erase an abbreviation starting with a single-quoted exclamation point" \
"Dependencies: add, erase. Issues: 84, 118"
"Dependencies: add, erase. GitHub issues: #84, #118"

# @TODO
# See
Expand All @@ -84,7 +84,7 @@ main() {
abbr erase $single_quoted_abbreviation
ztr test '(( ${#ABBR_REGULAR_USER_ABBREVIATIONS} == 0 ))' \
"Can erase an abbreviation with single quotation marks" \
"Dependencies: add, erase. Issues: 118"
"Dependencies: add, erase. GitHub issues: #118"

# @TODO
# See
Expand All @@ -96,7 +96,7 @@ main() {
abbr erase $double_quoted_abbreviation
ztr test '(( ${#ABBR_REGULAR_USER_ABBREVIATIONS} == 0 ))' \
"Can erase an abbreviation starting with double quotation marks" \
"Dependencies: add, erase. Issues: 118"
"Dependencies: add, erase. GitHub issues: #118"

# Manual

Expand Down

0 comments on commit 81325a7

Please sign in to comment.