]> source.dussan.org Git - redmine.git/commitdiff
scm: mercurial: add functional test of annotate file which does not exist in *tip...
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Fri, 10 Jun 2011 07:05:36 +0000 (07:05 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Fri, 10 Jun 2011 07:05:36 +0000 (07:05 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6041 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/functional/repositories_mercurial_controller_test.rb

index 23c3b71bfb865c23863ab69cce7fc0cc039f98b7..9fb88b0d2e586b897373bee08aa917c5648942c7 100644 (file)
@@ -354,6 +354,17 @@ class RepositoriesMercurialControllerTest < ActionController::TestCase
                  :sibling => { :tag => 'td', :content => /watcher =/ }
     end
 
+    def test_annotate_not_in_tip
+      @repository.fetch_changesets
+      @repository.reload
+      assert @repository.changesets.size > 0
+
+      get :annotate, :id => PRJ_ID,
+          :path => ['sources', 'welcome_controller.rb']
+      assert_response 404
+      assert_error_tag :content => /was not found/
+    end
+
     def test_annotate_at_given_revision
       @repository.fetch_changesets
       @repository.reload