Commit ce42dfeb authored by Toshi MARUYAMA's avatar Toshi MARUYAMA Committed by Eric Davis

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
parent 83567a28
......@@ -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
......
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