Bugfix in tup
This commit is contained in:
parent
de116fcf9e
commit
6de7798c8a
2 changed files with 5 additions and 5 deletions
|
@ -119,7 +119,7 @@ mul() {
|
||||||
( set -f; echo $(($1 * $2)) )
|
( set -f; echo $(($1 * $2)) )
|
||||||
}
|
}
|
||||||
|
|
||||||
add() {
|
plus() {
|
||||||
echo $(($1 + $2))
|
echo $(($1 + $2))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -212,7 +212,7 @@ buff() {
|
||||||
local cnt=-1
|
local cnt=-1
|
||||||
for x in $@; do
|
for x in $@; do
|
||||||
[[ $x = '.' ]] && break
|
[[ $x = '.' ]] && break
|
||||||
cnt=$(add $cnt 1)
|
cnt=$(plus $cnt 1)
|
||||||
done
|
done
|
||||||
local args=''
|
local args=''
|
||||||
local i=$cnt
|
local i=$cnt
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#! /bin/bash
|
#! /bin/bash
|
||||||
|
|
||||||
testTupIfEmpty() {
|
testTupIfEmpty() {
|
||||||
assertEquals '()' $(tup)
|
assertEquals '()' $(tup '')
|
||||||
}
|
}
|
||||||
|
|
||||||
testTupIfOneElement() {
|
testTupIfOneElement() {
|
||||||
|
@ -28,8 +28,8 @@ testTupxHappyPath() {
|
||||||
}
|
}
|
||||||
|
|
||||||
testTupxIfEmpty() {
|
testTupxIfEmpty() {
|
||||||
assertEquals '' "$(tup | tupx 1)"
|
assertEquals '' "$(tup '' | tupx 1)"
|
||||||
assertEquals '' "$(tup | tupx 5)"
|
assertEquals '' "$(tup '' | tupx 5)"
|
||||||
}
|
}
|
||||||
|
|
||||||
testTupxIfZeroIndex() {
|
testTupxIfZeroIndex() {
|
||||||
|
|
Loading…
Reference in a new issue