about summary refs log tree commit diff
path: root/t/9000-minc.t
diff options
context:
space:
mode:
Diffstat (limited to 't/9000-minc.t')
-rw-r--r--t/9000-minc.t19
1 files changed, 19 insertions, 0 deletions
diff --git a/t/9000-minc.t b/t/9000-minc.t
new file mode 100644
index 0000000..3d5b789
--- /dev/null
+++ b/t/9000-minc.t
@@ -0,0 +1,19 @@
+#!/bin/sh -e
+cd ${0%/*}
+. ./lib.sh
+plan 1
+
+rm -rf test.dir
+mkdir test.dir
+(
+cd test.dir
+
+mkdir -p inbox/cur inbox/new
+while read f; do touch "$f"; done <<!
+inbox/new/1:2,
+inbox/new/2
+!
+
+check_test 'minc' -eq 2 'minc inbox | wc -l'
+
+)