Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 2nd, 2012  |  syntax: None  |  size: 0.85 KB  |  hits: 13  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Feature: Manage Tasks
  2.   In order to make a GTD System
  3.   As an user
  4.   I want to create and manage and tag Tasks
  5.  
  6.   Scenario: Register new task with no project
  7.     Given I am on the new task page
  8.     And I enter 'test task' for 'title'
  9.     And I enter 'brief description' for 'summary'
  10.     When I press "Create"
  11.     Then I should see 'Task created'
  12.     And I should see 'test task'
  13.     And I should see 'breif description'
  14.     And I should see 'inbox'
  15.  
  16.     Scenario: Register new task with a project
  17.     Given I am on the new task page
  18.     And I enter 'test task' for 'title'
  19.     And I enter 'brief description' for 'summary'
  20.     And I select 'Sample project' for 'project'
  21.     When I press "Create"
  22.     Then I should see 'Task created'
  23.     And I should see 'test task'
  24.     And I should see 'breif description'
  25.     And I should see 'Sample project'