diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-02-21 15:25:53 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-02-21 15:25:53 -0800 |
commit | 5609586f652269186d74a4661600dcbd00b1322a (patch) | |
tree | 6747105c4c876b7abb782ffbff8f82d860c04f98 /t | |
parent | Merge branch 'jk/diff-highlight' (diff) | |
parent | gitweb: Fix "heads" view when there is no current branch (diff) | |
download | tgif-5609586f652269186d74a4661600dcbd00b1322a.tar.xz |
Merge branch 'jn/gitweb-unborn-head'
* jn/gitweb-unborn-head:
gitweb: Fix "heads" view when there is no current branch
Diffstat (limited to 't')
-rwxr-xr-x | t/t9500-gitweb-standalone-no-errors.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/t/t9500-gitweb-standalone-no-errors.sh b/t/t9500-gitweb-standalone-no-errors.sh index 40a1cb571e..90bb6050c1 100755 --- a/t/t9500-gitweb-standalone-no-errors.sh +++ b/t/t9500-gitweb-standalone-no-errors.sh @@ -778,4 +778,13 @@ test_expect_success \ 'echo "\$projects_list_group_categories = 1;" >>gitweb_config.perl && gitweb_run' +# ---------------------------------------------------------------------- +# unborn branches + +test_expect_success \ + 'unborn HEAD: "summary" page (with "heads" subview)' \ + 'git checkout orphan_branch || git checkout --orphan orphan_branch && + test_when_finished "git checkout master" && + gitweb_run "p=.git;a=summary"' + test_done |