summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorRamkumar Ramachandra <artagnon@gmail.com>2013-11-18 17:39:08 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-11-18 21:49:42 (GMT)
commitbc147968a4ab0d4fb069b00c9a08ff353266c1f6 (patch)
tree416aefa9dc7d975e52c6174c534a8c90856128f7 /t
parent42817b96b1b80b56fd5a4d5e0d6239524b1832a3 (diff)
downloadgit-bc147968a4ab0d4fb069b00c9a08ff353266c1f6.zip
git-bc147968a4ab0d4fb069b00c9a08ff353266c1f6.tar.gz
git-bc147968a4ab0d4fb069b00c9a08ff353266c1f6.tar.bz2
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>
Diffstat (limited to 't')
-rwxr-xr-xt/t6300-for-each-ref.sh7
1 files changed, 2 insertions, 5 deletions
diff --git a/t/t6300-for-each-ref.sh b/t/t6300-for-each-ref.sh
index 752f5cb..64301e7 100755
--- a/t/t6300-for-each-ref.sh
+++ b/t/t6300-for-each-ref.sh
@@ -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 &&