Commit 83567a28 authored by Toshi MARUYAMA's avatar Toshi MARUYAMA Committed by Eric Davis

scm: mercurial: add named branch test in functional test (#7246).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5130 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent 80223c35
......@@ -149,6 +149,27 @@ class RepositoriesMercurialControllerTest < ActionController::TestCase
end
end
def test_show_branch
@repository.fetch_changesets
@repository.reload
[
'default',
@branch_char_1,
'branch (1)[2]&,%.-3_4',
@branch_char_0,
'test_branch.latin-1',
'test-branch-00',
].each do |bra|
get :show, :id => 3, :rev => bra
assert_response :success
assert_template 'show'
assert_not_nil assigns(:entries)
assert assigns(:entries).size > 0
assert_not_nil assigns(:changesets)
assigns(:changesets).size > 0
end
end
def test_changes
get :changes, :id => 3, :path => ['images', 'edit.png']
assert_response :success
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment