On Sun, Jan 25, 2015 at 7:37 AM, Nguyễn Thái Ngọc Duy <pclouds@xxxxxxxxx> wrote: > Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@xxxxxxxxx> > --- > diff --git a/t/t3080-list-files.sh b/t/t3080-list-files.sh > new file mode 100755 > index 0000000..6313dd9 > --- /dev/null > +++ b/t/t3080-list-files.sh > +test_expect_success 'no dups' ' > + echo dirty >>file && To leave a clean slate for subsequent tests, would it make sense to restore 'file' to a clean state via test_when_finished()? > + git list-files -m file >actual && > + echo "file" >expected && > + test_cmp expected actual && > + git list-files -cm file >actual && > + echo "C file" >expected && > + test_cmp expected actual && > + git list-files -tcm file >actual && > + test_cmp expected actual > +' > + > +test_expect_success 'diff-cached' ' > + echo dirty >>file && > + git add file && Ditto here? > + git list-files -M >actual && > + echo "file" >expected && > + test_cmp expected actual > +' -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html