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/features/project_details_widget.feature

43 lines
1.7 KiB

#-- copyright
# OpenProject is a project management system.
# Copyright (C) 2011-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.
#
# 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.md for more details.
#++
Feature: Project Details Widget
Background:
Given there is 1 project with the following:
| Name | Parent |
And the project "Parent" has 1 subproject with the following:
| Name | Child |
And there is a role "Admin"
And there is a role "Manager"
And I am already Admin
@javascript
Scenario: Adding a "Calendar" widget
Given I am on the project "Parent" overview personalization page
When I select "Calendar" from the available widgets drop down
And I wait for the AJAX requests to finish
Then the "Calendar" widget should be in the hidden block
Scenario: Includes links to all child projects
Given the following widgets are selected for the overview page of the "Parent" project:
| top | Project_details |
When I go to the overview page of the project called "Parent"
And I follow "Child" within ".mypage-box .project_details"
Then I should be on the overview page of the project called "Child"