OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/spec/routing/issue_boxes_routing_spec.rb

15 lines
799 B

require 'spec_helper'
describe WorkPackageBoxesController do
describe "routing" do
it { get('/work_package_boxes/42/edit').should route_to(:controller => 'work_package_boxes',
:action => 'edit',
:id => '42') }
it { get('/work_package_boxes/42').should route_to(:controller => 'work_package_boxes',
:action => 'show',
:id => '42') }
it { put('/work_package_boxes/42').should route_to(:controller => 'work_package_boxes',
:action => 'update',
:id => '42') }
end
end