On 2015-07-07 18.06, Karthik Nayak wrote: > Add a test suite for testing the ref-filter APIs used > by for-each-ref. We just intialize the test suite for now. > More tests will be added in the following patches as more > options are added to for-each-ref. > > Based-on-patch-by: Jeff King <peff@xxxxxxxx> > Mentored-by: Christian Couder <christian.couder@xxxxxxxxx> > Mentored-by: Matthieu Moy <matthieu.moy@xxxxxxxxxxxxxxx> > Signed-off-by: Karthik Nayak <karthik.188@xxxxxxxxx> > --- > t/t6302-for-each-ref-filter.sh | 20 ++++++++++++++++++++ > 1 file changed, 20 insertions(+) > create mode 100755 t/t6302-for-each-ref-filter.sh > > diff --git a/t/t6302-for-each-ref-filter.sh b/t/t6302-for-each-ref-filter.sh > new file mode 100755 > index 0000000..44d2f24 > --- /dev/null > +++ b/t/t6302-for-each-ref-filter.sh > @@ -0,0 +1,20 @@ > +#!/bin/sh > + > +test_description='test for-each-refs usage of ref-filter APIs' > + > +. ./test-lib.sh > +. "$TEST_DIRECTORY"/lib-gpg.sh > + > +test_expect_success 'setup some history and refs' ' > + test_commit one && > + test_commit two && > + test_commit three && > + git checkout -b side && > + test_commit four && > + git tag -s -m "A signed tag message" signed-tag && > + git tag -s -m "Annonated doubly" double-tag signed-tag && > + git checkout master && > + git update-ref refs/odd/spot master > +' > + > +test_done > Could we have a tweak for people without gpg? error: cannot run gpg: No such file or directory error: could not run gpg. error: unable to sign the tag not ok 1 - setup some history and refs -- 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