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

47 lines
1.9 KiB

#-- copyright
# OpenProject is a project management system.
#
# Copyright (C) 2012-2013 the OpenProject Team
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License version 3.
#
# See doc/COPYRIGHT.rdoc for more details.
#++
require 'spec_helper'
describe WorkPackagesController do
it "should connect GET /work_packages/:id to work_packages#show" do
get("/work_packages/1").should route_to( :controller => 'work_packages',
:action => 'show',
:id => '1' )
end
it "should connect GET /projects/:project_id/work_packages/new to work_packages#new" do
get("/projects/1/work_packages/new").should route_to( :controller => 'work_packages',
:action => 'new',
:project_id => '1' )
end
it "should connect GET /projects/:project_id/work_packages/new_type to work_packages#new_type" do
get("/projects/1/work_packages/new_type").should route_to( :controller => 'work_packages',
:action => 'new_type',
:project_id => '1' )
end
it "should connect GET /work_packages/:id/edit to work_packages#edit" do
get("/work_packages/1/edit").should route_to( :controller => 'work_packages',
:action => 'edit',
:id => '1' )
end
it "should connect POST /projects/:project_id/work_packages to work_packages#new" do
post("/projects/1/work_packages").should route_to( :controller => 'work_packages',
:action => 'create',
:project_id => '1' )
end
end