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
This commit is contained in:
parent
cf2b4d49f0
commit
3285a721b1
|
@ -149,6 +149,27 @@ class RepositoriesMercurialControllerTest < ActionController::TestCase
|
||||||
end
|
end
|
||||||
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
|
def test_changes
|
||||||
get :changes, :id => 3, :path => ['images', 'edit.png']
|
get :changes, :id => 3, :path => ['images', 'edit.png']
|
||||||
assert_response :success
|
assert_response :success
|
||||||
|
|
Loading…
Reference in New Issue