Sha256: e4bfec45bc55f9bce28d16a9a81a9774f4ec1378d280a6671fcd8d5fbc7120d6
Contents?: true
Size: 1.25 KB
Versions: 34
Compression:
Stored size: 1.25 KB
Contents
# Redmine - project management software # Copyright (C) 2006-2015 Jean-Philippe Lang # # 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. # # 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. # # 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. require File.expand_path('../../../test_helper', __FILE__) class RoutingJournalsTest < Redmine::RoutingTest def test_journals should_route 'POST /issues/1/quoted' => 'journals#new', :id => '1' should_route 'GET /issues/changes' => 'journals#index' should_route 'GET /journals/diff/1' => 'journals#diff', :id => '1' should_route 'GET /journals/edit/1' => 'journals#edit', :id => '1' should_route 'POST /journals/edit/1' => 'journals#edit', :id => '1' end end
Version data entries
34 entries across 34 versions & 1 rubygems