bash-fun/test/tail_test.sh
Sławomir Śledź f254b98a3f Add more tests
2018-02-13 23:29:46 +01:00

15 lines
No EOL
260 B
Bash
Executable file

#! /bin/bash
testTailFrom10() {
assertEquals "2 3 4 5 6 7 8 9 10" "$(list {1..10} | tail | unlist)"
}
testTailFromOneElementList() {
assertEquals "" "$(list 1 | tail)"
}
testTailFromEmptyList() {
assertEquals "" "$(list | tail)"
}
. ./shunit2-init.sh