t5500: Modernize test style
commit3902985a58d5b5f42406f11f1c8b9b87a98c7e3c
authorStephen Boyd <bebarino@gmail.com>
Tue, 26 May 2009 06:17:14 +0000 (25 23:17 -0700)
committerJunio C Hamano <gitster@pobox.com>
Wed, 27 May 2009 07:06:12 +0000 (27 00:06 -0700)
tree74982df512070ad02df0a2bbb94b8904050508a0
parentd7107ca65f79c2d95bc327bee44c09073b4de631
t5500: Modernize test style

Code outside of the test harness was emitting "Initializing..." from
git-init. Fixup this test to be more modern:

    - test_expect_object_count() and count_objects() are unused

    - use grep directly instead of test "..." = $(grep ...)

    - end the test_expect_success line with a single-quote and put the
      test on a new line

    - put as much code inside the test harness as possible

    - no_strict_count_check is unused and duplicates the test
      "new object count"

    - use && whenever possible to catch errors early

    - use test_tick instead of GIT_AUTHOR_DATE=$sec

    - remove debugging aid log.txt

    - use subshells instead of cd-ing around

Also merge the pull test into one large test.

Signed-off-by: Stephen Boyd <bebarino@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t5500-fetch-pack.sh