Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/notifications.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/integration/features/notifications.feature')
-rw-r--r--tests/integration/features/notifications.feature20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests/integration/features/notifications.feature b/tests/integration/features/notifications.feature
deleted file mode 100644
index 01f90c9..0000000
--- a/tests/integration/features/notifications.feature
+++ /dev/null
@@ -1,20 +0,0 @@
-Feature: notifications
- Background:
- Given using api version "2"
-
- Scenario: Read notifications without Notifiers
- Given user "test1" exists
- Given As an "test1"
- Given list of notifiers is not empty
- When sending "GET" to "/apps/notifications/api/v1/notifications"
- # "200 OK" - Because there is no notifier
- Then the HTTP status code should be "200"
-
- Scenario: Read notifications with Notifiers
- Given user "test1" exists
- Given As an "test1"
- Given list of notifiers is empty
- When sending "GET" to "/apps/notifications/api/v1/notifications"
- # "204 No Content" - Because there is no notifier
- Then the HTTP status code should be "204"
-