Merged r6243 from trunk.

scm: mercurial: add functional test of destroying valid repository.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/1.2-stable@6252 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-07-11 02:07:44 +00:00
parent ba6b822e97
commit 8b6fd63a59
1 changed files with 12 additions and 0 deletions

View File

@ -425,6 +425,18 @@ class RepositoriesMercurialControllerTest < ActionController::TestCase
assert_error_tag :content => /was not found/
end
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 "Mercurial test repository NOT FOUND. Skipping functional tests !!!"
def test_fake; assert true end