1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
/*
* SPDX-FileCopyrightText: 2019 Kevin Ottens <ervin@kde.org>
SPDX-FileCopyrightText: 2019 David Faure <faure@kde.org>
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
*/
#include <testlib/qtest_zanshin.h>
#include <featurelib/zanshincontext.h>
using namespace Testlib;
// Feature: Context rename
// As someone collecting tasks
// I can rename a context
// In order to refine my tasks organization
class ContextEditFeature : public QObject
{
Q_OBJECT
private slots:
void Renamed_context_appear_in_the_list()
{
ZanshinContext c;
Given(c.I_display_the_available_pages());
When(c.I_rename_a_page("Contexts", "Errands", "Chores"));
And(c.I_list_the_items());
Then(c.the_list_is({
{ "display", "icon" },
{
{ "Inbox", "mail-folder-inbox" },
{ "Workday", "go-jump-today" },
{ "Projects", "folder" },
{ "Projects / TestData » Calendar1", "folder" },
{ "Projects / TestData » Calendar1 / Prepare talk about TDD", "view-pim-tasks" },
{ "Projects / TestData » Calendar1 / Read List", "view-pim-tasks" },
{ "Projects / TestData » Calendar1 » Calendar2", "folder" },
{ "Projects / TestData » Calendar1 » Calendar2 / Backlog", "view-pim-tasks" },
{ "Contexts", "folder" },
{ "Contexts / Chores", "view-pim-notes" },
{ "Contexts / Online", "view-pim-notes" },
{ "All Tasks", "view-pim-tasks" },
}
}));
}
};
ZANSHIN_TEST_MAIN(ContextEditFeature)
#include "contexteditfeature.moc"
|