AddTask

In order to remeber it for the next time I connect As a user I want to add a task with an name and an date in order to

  • Click on add button

    Tags: @Todo

    • When I click on New Todo button
    • Then I should see the popup
  • Create a todo with a text

    Tags: @Todo

    • Given I have deleted the database
    • And I click on New Todo button
    • And I enter "test Todo" in the textbox
    • When I hit Enter
    • Then I should have todos on the screen with
      DoneTextDue Date
      NOtest Todo02/01/2014
  • Create a todo with a text and a date

    Tags: @Todo

    • Given I have deleted the database
    • And I click on New Todo button
    • And I enter "test Todo" in the textbox
    • And I enter "11/02/2014" as the date
    • When I hit Enter
    • Then I should have todos on the screen with
      DoneTextDue Date
      NOtest Todo11/02/2014