Merged r3903 from trunk.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/1.0-stable@3953 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
9af4cb5c38
commit
8458dc23d4
@ -153,4 +153,27 @@ class AccountControllerTest < ActionController::TestCase
|
|||||||
assert_redirected_to ''
|
assert_redirected_to ''
|
||||||
assert_nil @request.session[:user_id]
|
assert_nil @request.session[:user_id]
|
||||||
end
|
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
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user