Cleanup routings

This commit is contained in:
Alexander Meindl
2018-01-28 11:47:25 +01:00
parent f44366bd75
commit b1a527fc52
19 changed files with 31 additions and 68 deletions

View File

@@ -0,0 +1,14 @@
# This file is a part of redmine_reporting,
# a reporting and statistics plugin for Redmine.
#
# Copyright (c) 2016-2018 AlphaNodes GmbH
# https://alphanodes.com
require File.expand_path('../../test_helper', __FILE__)
class RoutingTest < Redmine::RoutingTest
test 'routing sla' do
should_route 'GET /projects/1/settings/messenger' => 'projects#settings', id: '1', tab: 'messenger'
should_route 'PUT /projects/1/messenger_setting' => 'messenger_settings#update', project_id: '1'
end
end