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_queries_routing_spec.rb

10 lines
416 B

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