git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6234 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
a50ba1ab39
commit
45e9b00073
|
@ -117,6 +117,33 @@ class RepositoriesDarcsControllerTest < ActionController::TestCase
|
||||||
@project.reload
|
@project.reload
|
||||||
assert_nil @project.repository
|
assert_nil @project.repository
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_destroy_invalid_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
|
||||||
|
|
||||||
|
@repository = Repository::Darcs.create(
|
||||||
|
:project => @project,
|
||||||
|
:url => "/invalid",
|
||||||
|
:log_encoding => 'UTF-8'
|
||||||
|
)
|
||||||
|
assert @repository
|
||||||
|
@repository.fetch_changesets
|
||||||
|
@repository.reload
|
||||||
|
assert_equal 0, @repository.changesets.count
|
||||||
|
|
||||||
|
get :destroy, :id => PRJ_ID
|
||||||
|
assert_response 302
|
||||||
|
@project.reload
|
||||||
|
assert_nil @project.repository
|
||||||
|
end
|
||||||
else
|
else
|
||||||
puts "Darcs test repository NOT FOUND. Skipping functional tests !!!"
|
puts "Darcs test repository NOT FOUND. Skipping functional tests !!!"
|
||||||
def test_fake; assert true end
|
def test_fake; assert true end
|
||||||
|
|
Loading…
Reference in New Issue