diff --git a/tests/features/contexts/contexttaskaddfeature.cpp b/tests/features/contexts/contexttaskaddfeature.cpp index a8516d84..40b2f308 100644 --- a/tests/features/contexts/contexttaskaddfeature.cpp +++ b/tests/features/contexts/contexttaskaddfeature.cpp @@ -1,57 +1,56 @@ /* This file is part of Zanshin Copyright 2019 Kevin Ottens Copyright 2019 David Faure This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License or (at your option) version 3 or any later version accepted by the membership of KDE e.V. (or its successor approved by the membership of KDE e.V.), which shall act as a proxy defined in Section 14 of version 3 of the license. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include using namespace Testlib; // Feature: Task creation from a context // As someone collecting tasks // I can add a task directly associated to a context // In order to give my tasks some semantic -// @wip class ContextTaskAddFeature : public QObject { Q_OBJECT private slots: void Task_added_from_a_context_appear_in_its_list() { ZANSHIN_CONTEXT; - Given(I_display_the_page("Context / Online")); + Given(I_display_the_page("Contexts / Online")); When(I_add_a_task("Checking mail")); And(I_look_at_the_central_list()); When(I_list_the_items()); Then(the_list_is({ { "display" }, { { "Checking mail" }, } })); } }; ZANSHIN_TEST_MAIN(ContextTaskAddFeature) #include "contexttaskaddfeature.moc"