mirror of
https://github.com/git/git
synced 2024-10-28 19:25:47 +00:00
t6300 (for-each-ref): clearly demarcate setup
Condense the two-step setup into one step, and give it an appropriate name. Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
42817b96b1
commit
bc147968a4
1 changed files with 2 additions and 5 deletions
|
@ -18,16 +18,13 @@ setdate_and_increment () {
|
|||
export GIT_COMMITTER_DATE GIT_AUTHOR_DATE
|
||||
}
|
||||
|
||||
test_expect_success 'Create sample commit with known timestamp' '
|
||||
test_expect_success setup '
|
||||
setdate_and_increment &&
|
||||
echo "Using $datestamp" > one &&
|
||||
git add one &&
|
||||
git commit -m "Initial" &&
|
||||
setdate_and_increment &&
|
||||
git tag -a -m "Tagging at $datestamp" testtag
|
||||
'
|
||||
|
||||
test_expect_success 'Create upstream config' '
|
||||
git tag -a -m "Tagging at $datestamp" testtag &&
|
||||
git update-ref refs/remotes/origin/master master &&
|
||||
git remote add origin nowhere &&
|
||||
git config branch.master.remote origin &&
|
||||
|
|
Loading…
Reference in a new issue