git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6238 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
7a8a98bd93
commit
db44c22d04
|
@ -116,6 +116,15 @@ class RepositoriesFilesystemControllerTest < ActionController::TestCase
|
||||||
assert_equal 'text/plain', @response.content_type
|
assert_equal 'text/plain', @response.content_type
|
||||||
end
|
end
|
||||||
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
|
else
|
||||||
puts "Filesystem test repository NOT FOUND. Skipping functional tests !!!"
|
puts "Filesystem test repository NOT FOUND. Skipping functional tests !!!"
|
||||||
def test_fake; assert true end
|
def test_fake; assert true end
|
||||||
|
|
Loading…
Reference in New Issue