Advertisement
Guest User

Untitled

a guest
Mar 31st, 2015
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. Feature: Gestor cadastre
  2.  
  3. As administrator
  4. I want to cadastre a new account
  5. So that i can have new gestors
  6.  
  7.  
  8. Scenario: gestor cadastre
  9.  
  10. Given the system has no cadastre with CNPJ "77.274.871/0001-28"
  11. when i create the account with CNPJ "77.274.871/0001-28"
  12. then the account is stored properly in the system
  13.  
  14.  
  15.  
  16. Scenario: gestor cadastre with CNPJ already in use
  17.  
  18. Given the system has a cadastre with CNPJ "77.274.871/0001-28"
  19. when i create the account with CNPJ "77.274.871/0001-28"
  20. Then the account is not stored in the system
  21.  
  22.  
  23. Scenario: gestor cadastre with Phone number field not containing only numbers
  24.  
  25. Given that i want to cadastre a new gestor
  26. when i create an account with Phone number field "fa22-gja2"
  27. Then the account is not stored in the system
  28.  
  29.  
  30. Scenario: gestor cadastre web
  31.  
  32. Given i am at the gestor cadastre page
  33. When i fill all the registration data fields correctly
  34. And i click the button "create my account"
  35. Then the system stores the account properly
  36.  
  37. Scenario: gestor cadastre with CNPJ already in use web
  38.  
  39. Given that i am at the gestor cadastre page
  40. And the system has a cadastre with CNPJ "77.274.871/0001-28"
  41. When i fill the CNPJ field with "77.274.871/0001-28"
  42. And i click the button "Create my account"
  43. Then the system doesn't store the account
  44.  
  45. Scenario: gestor cadastre with phone number field not containing only numbers
  46.  
  47. Given i am at the gestor cadastre page
  48. When i fill the "phone number" field with "fa22-gja2"
  49. And i click the button "Create my account"
  50. Then the system doesn't store the account
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement