kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
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.
81 lines
4.1 KiB
81 lines
4.1 KiB
#-- copyright
|
|
# OpenProject is a project management system.
|
|
# Copyright (C) 2012-2013 the OpenProject Foundation (OPF)
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License version 3.
|
|
#
|
|
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
|
# Copyright (C) 2006-2013 Jean-Philippe Lang
|
|
# Copyright (C) 2010-2013 the ChiliProject Team
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
#
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
#++
|
|
|
|
require 'spec_helper'
|
|
|
|
describe ProjectsController do
|
|
|
|
describe "index" do
|
|
it { get("/projects").should route_to( :controller => 'projects', :action => 'index')}
|
|
it { get("/projects.atom").should route_to( :controller => 'projects', :action => 'index', :format => 'atom')}
|
|
it { get("/projects.xml").should route_to( :controller => 'projects', :action => 'index', :format => 'xml')}
|
|
end
|
|
|
|
|
|
describe "show" do
|
|
it{ get("/projects/1").should route_to( :controller => 'projects', :action => 'show', :id => '1' )}
|
|
it{ get("/projects/1.xml").should route_to( :controller => 'projects', :action => 'show', :id => '1', :format =>"xml")}
|
|
it{ get("/projects/test").should route_to( :controller => 'projects', :action => 'show', :id => 'test' )}
|
|
end
|
|
|
|
describe "new" do
|
|
it { get("/projects/new").should route_to(:controller => 'projects', :action => 'new' )}
|
|
|
|
end
|
|
|
|
describe "create" do
|
|
it { post("/projects").should route_to( :controller => 'projects', :action => 'create')}
|
|
it { post("/projects.xml").should route_to( :controller => 'projects', :action => 'create', :format => "xml")}
|
|
end
|
|
|
|
describe "update" do
|
|
it { put("/projects/123").should route_to(:controller => 'projects', :action => "update", :id => "123")}
|
|
it { put("/projects/123.xml").should route_to(:controller => 'projects', :action => "update", :id => "123", :format => "xml")}
|
|
end
|
|
|
|
describe "destroy_info" do
|
|
it { get("/projects/123/destroy_info").should route_to(:controller => 'projects', :action => "destroy_info", :id => "123")}
|
|
end
|
|
|
|
describe "delete" do
|
|
it{ delete("/projects/123").should route_to(:controller => 'projects', :action => "destroy", :id => "123")}
|
|
it{ delete("/projects/123.xml").should route_to(:controller => 'projects', :action => "destroy", :id => "123", :format => "xml")}
|
|
end
|
|
|
|
describe "miscellanous" do
|
|
it { get("/projects/123/settings").should route_to(:controller => 'projects', :action =>"settings", :id =>"123")}
|
|
it { get("/projects/123/settings/members").should route_to(:controller => 'projects', :action =>"settings", :id =>"123", :tab => "members")}
|
|
it { put("projects/123/modules").should route_to(:controller => 'projects', :action =>"modules", :id =>"123")}
|
|
it { put("projects/123/archive").should route_to(:controller => 'projects', :action =>"archive", :id =>"123")}
|
|
it { put("projects/123/unarchive").should route_to(:controller => 'projects', :action =>"unarchive", :id =>"123")}
|
|
it { get("projects/123/copy_project_from_settings").should route_to(:controller => 'copy_projects', :action =>"copy_project", :id =>"123", :coming_from => "settings")}
|
|
it { post("projects/123/copy").should route_to(:controller => 'copy_projects', :action =>"copy", :id =>"123")}
|
|
end
|
|
end
|
|
|
|
|
|
|