ttrss: Make functional test definitions specific to ttrss

- So as not to clash with future apps that may have feed add/remove capability.

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
This commit is contained in:
Sunil Mohan Adapa 2019-02-26 15:19:15 -08:00
parent 1eed7d581d
commit ee87c00578
No known key found for this signature in database
GPG Key ID: 43EA1CFF0AA7C5F2
2 changed files with 6 additions and 6 deletions

View File

@ -30,12 +30,12 @@ Scenario: Enable ttrss application
Scenario: Backup and restore ttrss
Given the ttrss application is enabled
And I subscribe to a feed
And I subscribe to a feed in ttrss
When I create a backup of the ttrss app data
And I unsubscribe from the feed
And I unsubscribe from the feed in ttrss
And I restore the ttrss app data backup
Then the ttrss service should be running
And I should be subscribed to the feed
And I should be subscribed to the feed in ttrss
Scenario: Disable ttrss application
Given the ttrss application is enabled

View File

@ -242,16 +242,16 @@ def syncthing_assert_folder_not_present(browser, folder_name):
assert not site.syncthing_folder_is_present(browser, folder_name)
@given('I subscribe to a feed')
@given('I subscribe to a feed in ttrss')
def ttrss_subscribe(browser):
site.ttrss_subscribe(browser)
@when('I unsubscribe from the feed')
@when('I unsubscribe from the feed in ttrss')
def ttrss_unsubscribe(browser):
site.ttrss_unsubscribe(browser)
@then('I should be subscribed to the feed')
@then('I should be subscribed to the feed in ttrss')
def ttrss_assert_subscribed(browser):
assert site.ttrss_is_subscribed(browser)