##// END OF EJS Templates
Adds missing strings (#699)....
Adds missing strings (#699). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2455 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2315:765f7abc6033
r2394:571494a028fc
Show More
members_controller_test.rb
15 lines | 432 B | text/x-ruby | RubyLexer
/ test / functional / members_controller_test.rb
Eric Davis
Converted routing and urls to follow the Rails REST convention....
r2315 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