summaryrefslogtreecommitdiffstats
path: root/test-files.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test-files.sh')
-rwxr-xr-xtest-files.sh33
1 files changed, 33 insertions, 0 deletions
diff --git a/test-files.sh b/test-files.sh
new file mode 100755
index 0000000..ee583cc
--- /dev/null
+++ b/test-files.sh
@@ -0,0 +1,33 @@
+scriptDir="$(cd "$(dirname "$0")"; pwd)"
+
+source "$scriptDir/git-base.sh"
+
+tmpfile=""
+
+cd_to_tmp() {
+ tmpfile="/tmp/git-prompt-tests-$(time_now)$1"
+ mkdir -p "$tmpfile"
+ cd "$tmpfile"
+}
+
+rm_tmp() {
+ cd $scriptDir
+ rm -rf /tmp/git-prompt-tests*
+}
+
+test_untracked_files() {
+ cd_to_tmp
+ git init --quiet
+
+ assertEquals "0" "$(untracked_files)"
+
+ touch foo
+ assertEquals "1" "$(untracked_files)"
+
+ git add .
+ assertEquals "0" "$(untracked_files)"
+
+ rm_tmp
+}
+
+. ./shunit/shunit2