diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-01-21 13:22:28 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-01-21 13:22:28 +0000 |
commit | ccdea234ad655fab8125e34c0bbad7d27accc886 (patch) | |
tree | 9cb4c48f41f0d63d3dc9ac44c1be362676cd38fb /test/functional/repositories_mercurial_controller_test.rb | |
parent | 6e1fa1603b16da3e9792e26b3bca5d1618ca24dc (diff) | |
download | redmine-ccdea234ad655fab8125e34c0bbad7d27accc886.tar.gz redmine-ccdea234ad655fab8125e34c0bbad7d27accc886.zip |
scm: functional test of using format_revision() for annotate (#3724).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4734 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/repositories_mercurial_controller_test.rb')
-rw-r--r-- | test/functional/repositories_mercurial_controller_test.rb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/functional/repositories_mercurial_controller_test.rb b/test/functional/repositories_mercurial_controller_test.rb index d48c7909e..ae7f4226e 100644 --- a/test/functional/repositories_mercurial_controller_test.rb +++ b/test/functional/repositories_mercurial_controller_test.rb @@ -196,6 +196,17 @@ class RepositoriesMercurialControllerTest < ActionController::TestCase :sibling => { :tag => 'td', :content => /watcher =/ } end + def test_annotate_at_given_revision + @repository.fetch_changesets + @repository.reload + [2, '400bb8672109', '400', 400].each do |r1| + get :annotate, :id => 3, :rev => r1, :path => ['sources', 'watchers_controller.rb'] + assert_response :success + assert_template 'annotate' + assert_tag :tag => 'h2', :content => /@ 2:400bb8672109/ + end + end + def test_empty_revision @repository.fetch_changesets @repository.reload |