On Thu, Oct 5, 2017 at 1:54 PM, <jameson.miller81@xxxxxxxxx> wrote: > From: Jameson Miller <jamill@xxxxxxxxxxxxx> > > Add tests for new ignored mode (matching) when showing all untracked > files. > > Signed-off-by: Jameson Miller <jamill@xxxxxxxxxxxxx> > --- > t/t7519-ignored-mode.sh | 132 ++++++++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 132 insertions(+) > create mode 100755 t/t7519-ignored-mode.sh > > diff --git a/t/t7519-ignored-mode.sh b/t/t7519-ignored-mode.sh > new file mode 100755 > index 0000000000..a8c35d1cbc > --- /dev/null > +++ b/t/t7519-ignored-mode.sh > @@ -0,0 +1,132 @@ > +#!/bin/sh > + > +test_description='git status collapse ignored' > + > +. ./test-lib.sh > + > +# commit initial ignore file > +test_expect_success 'setup initial commit and ignore file' ' Here and in the following tests, I have the impression that the leading comment says the same as the test title, so you could omit the comments, putting all effort into a well word smithed test title. > + cat >.gitignore <<-\EOF && > + *.ign > + ignored_dir/ > + !*.unignore > + EOF > + git add . && > + test_tick && How is timing relevant to these test? Thanks, Stefan