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.
37 lines
1.3 KiB
37 lines
1.3 KiB
12 years ago
|
#-- 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.
|
||
|
#++
|
||
|
|
||
12 years ago
|
Feature: General Timelines adminstration
|
||
|
As a ChiliProject Admin
|
||
|
I want to see 'No data to display' instead of an empty table
|
||
|
So that I can see the reason why I cannot see anything
|
||
|
|
||
|
Scenario: The admin gets 'No data to display' when there are no colors defined
|
||
|
Given I am logged in as "admin"
|
||
|
When I go to the admin page
|
||
|
And I follow "Colors"
|
||
|
Then I should see "No data to display"
|
||
|
And I should see "New color"
|
||
|
|
||
|
Scenario: The admin gets 'No data to display' when there are no project types defined
|
||
|
Given I am logged in as "admin"
|
||
|
When I go to the admin page
|
||
|
And I follow "Project types"
|
||
|
Then I should see "No data to display"
|
||
|
And I should see "New project type"
|
||
|
|
||
|
Scenario: The admin gets 'No data to display' when there are no planning element types defined
|
||
|
Given I am logged in as "admin"
|
||
|
When I go to the admin page
|
||
|
And I follow "Planning element types"
|
||
|
Then I should see "No data to display"
|
||
|
And I should see "New planning element type"
|