mirror of
https://github.com/zsh-users/zsh-autosuggestions.git
synced 2024-11-18 09:51:06 +01:00
18 lines
223 B
Bash
18 lines
223 B
Bash
|
#! /bin/sh
|
||
|
# file: examples/party_test.sh
|
||
|
|
||
|
testEquality()
|
||
|
{
|
||
|
assertEquals 1 1
|
||
|
}
|
||
|
|
||
|
testPartyLikeItIs1999()
|
||
|
{
|
||
|
year=`date '+%Y'`
|
||
|
assertEquals "It's not 1999 :-(" \
|
||
|
'1999' "${year}"
|
||
|
}
|
||
|
|
||
|
# load shunit2
|
||
|
. ../src/shunit2
|