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

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6238 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-07-10 23:13:49 +00:00
parent 7a8a98bd93
commit db44c22d04

View File

@ -116,6 +116,15 @@ class RepositoriesFilesystemControllerTest < ActionController::TestCase
assert_equal 'text/plain', @response.content_type
end
end
def test_destroy_valid_repository
@request.session[:user_id] = 1 # admin
get :destroy, :id => PRJ_ID
assert_response 302
@project.reload
assert_nil @project.repository
end
else
puts "Filesystem test repository NOT FOUND. Skipping functional tests !!!"
def test_fake; assert true end