##// END OF EJS Templates
Removed unused helper....
Removed unused helper. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10932 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9453:ba5a052c8ca8
r10705:e9018553e509
Show More
wikis_test.rb
33 lines | 1.3 KiB | text/x-ruby | RubyLexer
Jean-Philippe Lang
Adds REST API for versions (#7403)....
r6060 # Redmine - project management software
Jean-Philippe Lang
Copyright update....
r9453 # Copyright (C) 2006-2012 Jean-Philippe Lang
Eric Davis
Moved a routing test from a functional to an integration test....
r3281 #
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
Toshi MARUYAMA
remove trailing white-spaces from test/integration/routing_test.rb....
r6533 #
Eric Davis
Moved a routing test from a functional to an integration test....
r3281 # This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
Toshi MARUYAMA
remove trailing white-spaces from test/integration/routing_test.rb....
r6533 #
Eric Davis
Moved a routing test from a functional to an integration test....
r3281 # You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Toshi MARUYAMA
test: route: move wikis test to new file...
r8243 require File.expand_path('../../../test_helper', __FILE__)
Eric Davis
Moved a routing test from a functional to an integration test....
r3281
Toshi MARUYAMA
test: route: move wikis test to new file...
r8243 class RoutingWikisTest < ActionController::IntegrationTest
Toshi MARUYAMA
test: replace "should_route" of "wikis (plural, admin setup)" to "assert_routing" at integration/routing_test.rb...
r8096 def test_wikis_plural_admin_setup
Toshi MARUYAMA
test: route: simplify wikis tests...
r8252 ["get", "post"].each do |method|
assert_routing(
{ :method => method, :path => "/projects/ladida/wiki/destroy" },
{ :controller => 'wikis', :action => 'destroy', :id => 'ladida' }
)
end
Toshi MARUYAMA
test: replace "should_route" of "wikis (plural, admin setup)" to "assert_routing" at integration/routing_test.rb...
r8096 assert_routing(
{ :method => 'post', :path => "/projects/ladida/wiki" },
{ :controller => 'wikis', :action => 'edit', :id => 'ladida' }
)
Eric Davis
Refactor: Move the rest of the routing tests to RoutingTest....
r3573 end
Eric Davis
Moved a routing test from a functional to an integration test....
r3281 end