summaryrefslogtreecommitdiffstats
path: root/test/functional/repositories_mercurial_controller_test.rb
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-07-11 00:15:34 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-07-11 00:15:34 +0000
commitbc5587002a76083c6c4204315f1c00e359696c0c (patch)
tree0b4aaf7246a61f35c34236c0e9807ef575f36c31 /test/functional/repositories_mercurial_controller_test.rb
parenta8871a5af77a4949304ee4479bc8e936c0e05a99 (diff)
downloadredmine-bc5587002a76083c6c4204315f1c00e359696c0c.tar.gz
redmine-bc5587002a76083c6c4204315f1c00e359696c0c.zip
scm: mercurial: add functional test of destroying valid repository (#8777, #6713, #4725).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6243 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/repositories_mercurial_controller_test.rb')
-rw-r--r--test/functional/repositories_mercurial_controller_test.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/functional/repositories_mercurial_controller_test.rb b/test/functional/repositories_mercurial_controller_test.rb
index 4b83abf15..8cc1b27a1 100644
--- a/test/functional/repositories_mercurial_controller_test.rb
+++ b/test/functional/repositories_mercurial_controller_test.rb
@@ -433,6 +433,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