git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] test cases: optionally setup branch.*.merge from upstream local branches
@ 2008-02-18 15:07 Jay Soffian
  2008-02-18 18:23 ` Johannes Schindelin
  0 siblings, 1 reply; 2+ messages in thread
From: Jay Soffian @ 2008-02-18 15:07 UTC (permalink / raw)
  To: git; +Cc: Jay Soffian, Junio C Hamano, Johannes Schindelin

Added test cases for new "optionally setup branch.*.merge from upstream local
branches" functionality.

Signed-off-by: Jay Soffian <jaysoffian@gmail.com>
---
 t/t3200-branch.sh |   21 +++++++++++++++++++--
 1 files changed, 19 insertions(+), 2 deletions(-)

diff --git a/t/t3200-branch.sh b/t/t3200-branch.sh
index d21081d..8d1dccd 100755
--- a/t/t3200-branch.sh
+++ b/t/t3200-branch.sh
@@ -161,7 +161,7 @@ test_expect_success 'avoid ambiguous track' '
 '
 
 test_expect_success 'test overriding tracking setup via --no-track' \
-    'git config branch.autosetupmerge true &&
+    'git config branch.autosetupmerge always &&
      git config remote.local.url . &&
      git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
      (git show-ref -q refs/remotes/local/master || git-fetch local) &&
@@ -171,7 +171,9 @@ test_expect_success 'test overriding tracking setup via --no-track' \
      ! test "$(git config branch.my2.merge)" = refs/heads/master'
 
 test_expect_success 'no tracking without .fetch entries' \
-    'git branch --track my6 s &&
+    'git config branch.autosetupmerge true &&
+     git branch my6 s &&
+     git config branch.automsetupmerge false &&
      test -z "$(git config branch.my6.remote)" &&
      test -z "$(git config branch.my6.merge)"'
 
@@ -192,6 +194,21 @@ test_expect_success 'test deleting branch without config' \
     'git branch my7 s &&
      test "$(git branch -d my7 2>&1)" = "Deleted branch my7."'
 
+test_expect_success 'test tracking without .fetch entries w/--track given' \
+    'git branch --track my8 &&
+     test "$(git config branch.my8.remote)" &&
+     test "$(git config branch.my8.merge)"'
+
+test_expect_success \
+    'test tracking without .fetch entries w/autosetupmerge=always' \
+    'git config branch.autosetupmerge always &&
+     git branch --track my9 &&
+     git config branch.autosetupmerge false
+     test "$(git config branch.my9.remote)" &&
+     test "$(git config branch.my9.merge)"'
+
+
+
 # Keep this test last, as it changes the current branch
 cat >expect <<EOF
 0000000000000000000000000000000000000000 $HEAD $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1117150200 +0000	branch: Created from master
-- 
1.5.4.2.203.gf8d86

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] test cases: optionally setup branch.*.merge from upstream local branches
  2008-02-18 15:07 [PATCH] test cases: optionally setup branch.*.merge from upstream local branches Jay Soffian
@ 2008-02-18 18:23 ` Johannes Schindelin
  0 siblings, 0 replies; 2+ messages in thread
From: Johannes Schindelin @ 2008-02-18 18:23 UTC (permalink / raw)
  To: Jay Soffian; +Cc: git, Junio C Hamano

Hi,

On Mon, 18 Feb 2008, Jay Soffian wrote:

> Added test cases for new "optionally setup branch.*.merge from upstream 
> local branches" functionality.
> 
> Signed-off-by: Jay Soffian <jaysoffian@gmail.com>
> ---
>  t/t3200-branch.sh |   21 +++++++++++++++++++--

You might want to add another patch, this time to t7201-co.sh, which 
demonstrates that even a "branch.autosetupmerge false" does not prevent 
"git checkout --track -b <name>" from working.

Ciao,
Dscho

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2008-02-18 18:24 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-18 15:07 [PATCH] test cases: optionally setup branch.*.merge from upstream local branches Jay Soffian
2008-02-18 18:23 ` Johannes Schindelin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).