diff options
Diffstat (limited to 'test/functional')
-rw-r--r-- | test/functional/repositories_git_controller_test.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/functional/repositories_git_controller_test.rb b/test/functional/repositories_git_controller_test.rb index e7337b2e6..5dedf6e86 100644 --- a/test/functional/repositories_git_controller_test.rb +++ b/test/functional/repositories_git_controller_test.rb @@ -542,6 +542,21 @@ class RepositoriesGitControllerTest < ActionController::TestCase end end + def test_revisions + assert_equal 0, @repository.changesets.count + @repository.fetch_changesets + @project.reload + assert_equal NUM_REV, @repository.changesets.count + get :revisions, :id => PRJ_ID + assert_response :success + assert_template 'revisions' + assert_tag :tag => 'form', + :attributes => { + :method => 'get', + :action => '/projects/subproject1/repository/revision' + } + end + def test_revision assert_equal 0, @repository.changesets.count @repository.fetch_changesets |