summaryrefslogtreecommitdiffstats
path: root/test-files.sh
diff options
context:
space:
mode:
authorMichael Allen <michael@michaelallen.io>2015-02-17 17:09:45 +0000
committerMichael Allen <michael@michaelallen.io>2015-02-17 17:09:45 +0000
commitf05711dbcf196f98f0e08d783f760d47d98b93a6 (patch)
tree9906f0cf7d540d35fc1d46fd5d3396d3d50c8207 /test-files.sh
parent19d104ac60b19c1a11a72f4ebbb63e933552fcf0 (diff)
downloadgit-sonar-f05711dbcf196f98f0e08d783f760d47d98b93a6.tar.gz
git-sonar-f05711dbcf196f98f0e08d783f760d47d98b93a6.zip
untracked files reporting
Diffstat (limited to '')
-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