
Untitled
By: a guest on
May 2nd, 2012 | syntax:
None | size: 0.85 KB | hits: 13 | expires: Never
Feature: Manage Tasks
In order to make a GTD System
As an user
I want to create and manage and tag Tasks
Scenario: Register new task with no project
Given I am on the new task page
And I enter 'test task' for 'title'
And I enter 'brief description' for 'summary'
When I press "Create"
Then I should see 'Task created'
And I should see 'test task'
And I should see 'breif description'
And I should see 'inbox'
Scenario: Register new task with a project
Given I am on the new task page
And I enter 'test task' for 'title'
And I enter 'brief description' for 'summary'
And I select 'Sample project' for 'project'
When I press "Create"
Then I should see 'Task created'
And I should see 'test task'
And I should see 'breif description'
And I should see 'Sample project'