diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-07-10 15:47:35 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-07-10 15:47:35 +0000 |
commit | 6ee6d709f26bb43edc982b4d096c114420dea742 (patch) | |
tree | ac70d5029fa7ec91cd6e97412acdbb9c248cd93a /test/functional/repositories_subversion_controller_test.rb | |
parent | 7f9f295b4e3560ef2f6cdf3a7a88192734325f7a (diff) | |
download | redmine-6ee6d709f26bb43edc982b4d096c114420dea742.tar.gz redmine-6ee6d709f26bb43edc982b4d096c114420dea742.zip |
scm: subversion: add functional test of destroying valid repository (#8458, #6713, #4725).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6224 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/repositories_subversion_controller_test.rb')
-rw-r--r-- | test/functional/repositories_subversion_controller_test.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/functional/repositories_subversion_controller_test.rb b/test/functional/repositories_subversion_controller_test.rb index e6d4fbe7b..17c09cbf5 100644 --- a/test/functional/repositories_subversion_controller_test.rb +++ b/test/functional/repositories_subversion_controller_test.rb @@ -294,6 +294,20 @@ class RepositoriesSubversionControllerTest < ActionController::TestCase assert_template 'annotate' assert_tag :tag => 'h2', :content => /@ 8/ end + + def test_destroy_valid_repository + @request.session[:user_id] = 1 # admin + @repository.fetch_changesets + @repository.reload + assert @repository.changesets.count > 0 + + get :destroy, :id => PRJ_ID + assert_response 302 + + @project.reload + assert_nil @project.repository + end + else puts "Subversion test repository NOT FOUND. Skipping functional tests !!!" def test_fake; assert true end |