Advertisement
Guest User

Untitled

a guest
Aug 1st, 2015
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. require 'rails_helper'
  2.  
  3. feature 'task list' do
  4.  
  5. feature 'listing tasks' do
  6. scenario 'opening the list with the default filters and sorting'
  7. end
  8.  
  9. feature 'interacting with a task in the list' do
  10. scenario 'adding a task'
  11. scenario 'adding a task on an empty list'
  12. scenario 'completing a task'
  13. scenario 'editing and updating a task'
  14. scenario 'editing a newly added task'
  15. scenario 'destroying a task'
  16. end
  17.  
  18. feature 'sorting the list' do
  19. scenario 'sorting by creation date'
  20. end
  21.  
  22. feature 'filtering the list' do
  23. scenario 'filtering by task status'
  24. end
  25.  
  26. feature 'searching the list' do
  27. scenario 'searching for a task'
  28. scenario 'searching for tasks related to a consultant'
  29. end
  30.  
  31. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement