From: Eric Davis Date: Thu, 19 Aug 2010 04:29:46 +0000 (+0000) Subject: Merged r3903 from trunk. X-Git-Tag: 1.0.1~65 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=8458dc23d4b89d6f42bf356d9589753f1f0908e5;p=redmine.git Merged r3903 from trunk. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/1.0-stable@3953 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/test/functional/account_controller_test.rb b/test/functional/account_controller_test.rb index 17d19dfe1..ce3d13f10 100644 --- a/test/functional/account_controller_test.rb +++ b/test/functional/account_controller_test.rb @@ -153,4 +153,27 @@ class AccountControllerTest < ActionController::TestCase assert_redirected_to '' assert_nil @request.session[:user_id] end + + context "GET #register" do + context "with self registration on" do + setup do + Setting.self_registration = '3' + get :register + end + + should_respond_with :success + should_render_template :register + should_assign_to :user + end + + context "with self registration off" do + setup do + Setting.self_registration = '0' + get :register + end + + should_redirect_to('/') { home_url } + end + end + end