-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Digital Object Component Create (#71)
- Loading branch information
Showing
5 changed files
with
73 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
staff_features/digital_objects/digital_object_component_create.feature
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
Feature: Digital Object Component Create | ||
Background: | ||
Given an administrator user is logged in | ||
Scenario: Create a Child Digital Object | ||
Given a Digital Object has been created | ||
And the Digital Object is opened in edit mode | ||
When the user clicks on 'Add Child' | ||
And the user fills in 'Label' with 'Digital Object Component Label Child' | ||
And the user clicks on 'Save' | ||
Then the 'Digital Object Component' created message is displayed | ||
And the Digital Object Component with Label 'Digital Object Component Label Child' is saved as a child of the Digital Object | ||
Scenario: Create a Sibling Digital Object | ||
Given a Digital Object with a Digital Object Component has been created | ||
And the Digital Object is opened in edit mode | ||
When the user selects the Digital Object Component | ||
And the user clicks on 'Add Sibling' | ||
And the user fills in 'Label' with 'Digital Object Component Label Sibling' | ||
And the user clicks on 'Save' | ||
Then the 'Digital Object Component' created message is displayed | ||
And the Digital Object Component with Title 'Digital Object Component Label Sibling' is saved as a sibling of the selected Digital Object Component |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters