##// END OF EJS Templates
Fixed the bug in the OpenID registration where the form wouldn't take a login...
Fixed the bug in the OpenID registration where the form wouldn't take a login AccountController#open_id_authenticate was adding an auth_source_registration to the session which caused AccountController#register to use the wrong codepath. #2757 git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2483 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2315:765f7abc6033
r2421:24ee6b9a1b16
Show More
members_controller_test.rb
15 lines | 432 B | text/x-ruby | RubyLexer
/ test / functional / members_controller_test.rb
require File.dirname(__FILE__) + '/../test_helper'
require 'members_controller'
# Re-raise errors caught by the controller.
class MembersController; def rescue_action(e) raise e end; end
class MembersControllerTest < Test::Unit::TestCase
def test_members_routing
assert_routing(
{:method => :post, :path => 'projects/5234/members/new'},
:controller => 'members', :action => 'new', :id => '5234'
)
end
end