From 1be21db78e92cc87553772e75eb4c394a4148c1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Tue, 9 Jan 2024 23:48:51 +0100 Subject: [PATCH] ci: Remove unused test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- tests/integration/features/decks.feature | 26 ------------------------ 1 file changed, 26 deletions(-) diff --git a/tests/integration/features/decks.feature b/tests/integration/features/decks.feature index 0351f6269..1913c8420 100644 --- a/tests/integration/features/decks.feature +++ b/tests/integration/features/decks.feature @@ -33,32 +33,6 @@ Feature: decks And create a stack named "ToDo" When create a card named "This is a very ong name that exceeds the maximum length of a deck board created which is longer than 255 characters This is a very ong name that exceeds the maximum length of a deck board created which is longer than 255 characters This is a very ong name that exceeds the maximum length of a deck board created which is longer than 255 characters" - Scenario: Setting a duedate on a card - Given acting as user "user0" - And creates a board named "MyBoard" with color "000000" - And create a stack named "ToDo" - And create a card named "Overdue task" - When get the card details - And the response should be a JSON array with the following mandatory values - |key|value| - |title|Overdue task| - |duedate|| - |overdue|0| - And set the card attribute "duedate" to "2020-12-12 13:37:00" - When get the card details - And the response should be a JSON array with the following mandatory values - |key|value| - |title|Overdue task| - |duedate|2020-12-12T13:37:00+00:00| - |overdue|3| - And set the card attribute "duedate" to "" - When get the card details - And the response should be a JSON array with the following mandatory values - |key|value| - |title|Overdue task| - |duedate|| - |overdue|0| - Scenario: Cannot access card on a deleted board Given acting as user "user0" And creates a board named "MyBoard" with color "000000"