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/rb_taskboards_routing_spec.rb

10 lines
426 B

require 'spec_helper'
describe RbTaskboardsController do
describe "routing" do
it { get('/projects/project_42/sprints/21/taskboard').should route_to(:controller => 'rb_taskboards',
:action => 'show',
:project_id => 'project_42',
:sprint_id => '21') }
end
end