update tests to set flag appropriately

This commit is contained in:
Zhao Li
2019-07-08 13:10:19 -10:00
parent 62757b0f3f
commit 83be21ebb3

View File

@@ -72,6 +72,8 @@ setup_repo_with_upstream() {
git clone "$remote" clone git clone "$remote" clone
cd clone cd clone
SCM_GIT_SHOW_COMMIT_COUNT=true
git_prompt_vars git_prompt_vars
assert_equal "$SCM_BRANCH" "${pre}" assert_equal "$SCM_BRANCH" "${pre}"
@@ -146,6 +148,7 @@ setup_repo_with_upstream() {
pushd "${repo}" pushd "${repo}"
SCM_GIT_SHOW_REMOTE_INFO=true SCM_GIT_SHOW_REMOTE_INFO=true
SCM_GIT_SHOW_COMMIT_COUNT=true
git_prompt_vars git_prompt_vars
assert_equal "$SCM_BRANCH" "${pre}my-remote${post}" assert_equal "$SCM_BRANCH" "${pre}my-remote${post}"
@@ -166,6 +169,7 @@ setup_repo_with_upstream() {
pushd "${repo}" pushd "${repo}"
SCM_GIT_SHOW_REMOTE_INFO=auto SCM_GIT_SHOW_REMOTE_INFO=auto
SCM_GIT_SHOW_COMMIT_COUNT=true
git_prompt_vars git_prompt_vars
assert_equal "$SCM_BRANCH" "${pre}${post}" assert_equal "$SCM_BRANCH" "${pre}${post}"
@@ -202,6 +206,7 @@ setup_repo_with_upstream() {
git remote add third-remote "$(mktemp -d)" git remote add third-remote "$(mktemp -d)"
SCM_GIT_SHOW_REMOTE_INFO=false SCM_GIT_SHOW_REMOTE_INFO=false
SCM_GIT_SHOW_COMMIT_COUNT=true
git_prompt_vars git_prompt_vars
assert_equal "$SCM_BRANCH" "${pre}${post}" assert_equal "$SCM_BRANCH" "${pre}${post}"
@@ -223,6 +228,7 @@ setup_repo_with_upstream() {
pushd "${repo}" pushd "${repo}"
SCM_GIT_SHOW_REMOTE_INFO=true SCM_GIT_SHOW_REMOTE_INFO=true
SCM_GIT_SHOW_COMMIT_COUNT=true
git_prompt_vars git_prompt_vars
assert_equal "$SCM_BRANCH" "${pre} → my-remote${post}" assert_equal "$SCM_BRANCH" "${pre} → my-remote${post}"