scm: mercurial: add tag test in functional test (#1981).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5131 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
83567a28a4
commit
ce42dfeb11
|
@ -170,6 +170,24 @@ class RepositoriesMercurialControllerTest < ActionController::TestCase
|
|||
end
|
||||
end
|
||||
|
||||
def test_show_tag
|
||||
@repository.fetch_changesets
|
||||
@repository.reload
|
||||
[
|
||||
@tag_char_1,
|
||||
'tag_test.00',
|
||||
'tag-init-revision'
|
||||
].each do |tag|
|
||||
get :show, :id => 3, :rev => tag
|
||||
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
|
||||
|
|
Loading…
Reference in New Issue