scm: git: add functional test of destroying valid repository (#6713, #4725).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6249 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-07-11 01:09:34 +00:00
parent 61e6dc0a48
commit c077f0cde1
1 changed files with 12 additions and 0 deletions

View File

@ -374,6 +374,18 @@ class RepositoriesGitControllerTest < ActionController::TestCase
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
private
def puts_ruby19_non_utf8_pass