mirror of
https://github.com/git/git.git
synced 2025-12-12 20:36:24 +01:00
In preparation for adding tests for the new `git refs list` command, refactor the existing t6300 test suite to make its logic shareable. Move the core test logic from `t6300-for-each-ref.sh` into a new `for-each-ref-tests.sh` file. Inside this new script, replace hardcoded calls to "git for-each-ref" with the `$git_for_each_ref` variable. The original `t6300-for-each-ref.sh` script now becomes a simple "driver". It is responsible for setting the default value of the variable and then sourcing the test library. This new structure follows the established pattern used for sharing tests between `git-blame` and `git-annotate` and prepares the test suite for the `refs list` tests to be added in a subsequent commit. Mentored-by: Patrick Steinhardt <ps@pks.im> Mentored-by: shejialuo <shejialuo@gmail.com> Mentored-by: Karthik Nayak <karthik.188@gmail.com> Signed-off-by: Meet Soni <meetsoni3017@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
20 lines
428 B
Bash
Executable File
20 lines
428 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Copyright (c) 2007 Andy Parkins
|
|
#
|
|
|
|
test_description='for-each-ref test'
|
|
|
|
. ./test-lib.sh
|
|
|
|
test_expect_success "for-each-ref does not crash with -h" '
|
|
test_expect_code 129 git for-each-ref -h >usage &&
|
|
test_grep "[Uu]sage: git for-each-ref " usage &&
|
|
test_expect_code 129 nongit git for-each-ref -h >usage &&
|
|
test_grep "[Uu]sage: git for-each-ref " usage
|
|
'
|
|
|
|
. "$TEST_DIRECTORY"/for-each-ref-tests.sh
|
|
|
|
test_done
|