This repository has been archived by the owner on Jul 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ISAICP-4618: Provide a test for the tallinn report date.
- Loading branch information
1 parent
082fca3
commit 988ab19
Showing
1 changed file
with
30 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
@api @tallinn | ||
Feature: | ||
As a moderator of Joinup | ||
I want to be able to be aware when was the last update time of a tallinn report. | ||
|
||
Background: | ||
Given users: | ||
| Username | Roles | | ||
| karma | moderator | | ||
|
||
Scenario: Tallinn reports that have never been updated should not show last update date. | ||
# Timestamp 1530529671 translates to 02-07-2018. | ||
Given tallinn_report content: | ||
| title | collection | created | changed | | ||
| Romania Report | Tallinn Ministerial Declaration | 1530529671 | 1530529671 | | ||
When I am logged in as "karma" | ||
And I go to the "Tallinn Ministerial Declaration" collection | ||
And I click "Tallinn initiative" in the "Left sidebar" region | ||
Then I should see the text "Last update: -" in the "Romania Report" tile | ||
And I should not see the text "02/07/2018" in the "Romania Report" tile | ||
|
||
Scenario: Tallinn reports that have been updated should show last update date. | ||
# Timestamp 1530443270 translates to 01-07-2018, timestamp 1530529671 translates to 02-07-2018. | ||
Given tallinn_report content: | ||
| title | collection | created | changed | | ||
| Romania Report | Tallinn Ministerial Declaration | 1530443270 | 1530529671 | | ||
When I am logged in as "karma" | ||
And I go to the "Tallinn Ministerial Declaration" collection | ||
And I click "Tallinn initiative" in the "Left sidebar" region | ||
Then I should see the text "Last update: 02/07/2018" in the "Romania Report" tile |