summaryrefslogtreecommitdiffstats
path: root/test/functional/repositories_git_controller_test.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2011-12-03 15:09:08 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2011-12-03 15:09:08 +0000
commit4eb14ab85cf4c60a1a406578e9547f31db60de95 (patch)
tree46e5ca277fbedd4b9c66ed5737149a5f03da8d79 /test/functional/repositories_git_controller_test.rb
parentf660d5f1837f4cd2f7232535fb18b313f1c4ed40 (diff)
downloadredmine-4eb14ab85cf4c60a1a406578e9547f31db60de95.tar.gz
redmine-4eb14ab85cf4c60a1a406578e9547f31db60de95.zip
Test for repository edit and cleanup.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8050 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/repositories_git_controller_test.rb')
-rw-r--r--test/functional/repositories_git_controller_test.rb20
1 files changed, 13 insertions, 7 deletions
diff --git a/test/functional/repositories_git_controller_test.rb b/test/functional/repositories_git_controller_test.rb
index 0a95cbeef..094a6e7f1 100644
--- a/test/functional/repositories_git_controller_test.rb
+++ b/test/functional/repositories_git_controller_test.rb
@@ -16,12 +16,10 @@
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
require File.expand_path('../../test_helper', __FILE__)
-require 'repositories_controller'
-
-# Re-raise errors caught by the controller.
-class RepositoriesController; def rescue_action(e) raise e end; end
class RepositoriesGitControllerTest < ActionController::TestCase
+ tests RepositoriesController
+
fixtures :projects, :users, :roles, :members, :member_roles,
:repositories, :enabled_modules
@@ -43,9 +41,6 @@ class RepositoriesGitControllerTest < ActionController::TestCase
@ruby19_non_utf8_pass =
(RUBY_VERSION >= '1.9' && Encoding.default_external.to_s != 'UTF-8')
- @controller = RepositoriesController.new
- @request = ActionController::TestRequest.new
- @response = ActionController::TestResponse.new
User.current = nil
@project = Project.find(PRJ_ID)
@repository = Repository::Git.create(
@@ -63,6 +58,17 @@ class RepositoriesGitControllerTest < ActionController::TestCase
end
if File.directory?(REPOSITORY_PATH)
+ def test_get_edit
+ @request.session[:user_id] = 1
+ @project.repository.destroy
+ xhr :get, :edit, :id => 'subproject1', :repository_scm => 'Git'
+ assert_response :success
+ assert_equal 'text/javascript', @response.content_type
+ assert_kind_of Repository::Git, assigns(:repository)
+ assert assigns(:repository).new_record?
+ assert_select_rjs :replace_html, 'tab-content-repository'
+ end
+
def test_browse_root
assert_equal 0, @repository.changesets.count
@repository.fetch_changesets