indent with two tabs

This commit is contained in:
Nathaniel Landau
2021-08-06 11:00:49 -04:00
parent 2f26c2d2e9
commit f7ca40e128

View File

@@ -93,12 +93,18 @@ _testCleanString_() {
assert_output "I AM IN CAPS"
}
@test "_cleanString_: remove spaces before/aftrer -_" {
run _cleanString_ "word - another- word- another-word"
@test "_cleanString_: remove spaces before/aftrer dashes" {
run _cleanString_ "word - another- word -another-word"
assert_success
assert_output "word-another-word-another-word"
}
@test "_cleanString_: remove spaces before/aftrer underscores" {
run _cleanString_ "word _ another_ word _another_word"
assert_success
assert_output "word_another_word_another_word"
}
@test "_cleanString_: alnum" {
run _cleanString_ -a " !@#$%^%& i am in caps 12345 == "
assert_success