-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fdceb08
commit 7755474
Showing
2 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# language: pt | ||
|
||
Funcionalidade: Adicionar | ||
|
||
Contexto: | ||
Dado que esteja na home | ||
|
||
Cenario: Adicionar repositório à lista | ||
Quando inserir um repositório | ||
Então deve exibí-lo na lista de repositórios | ||
|
||
Cenario: Adicionar mais de um repositório | ||
Quando inserir um repositório | ||
E inserir outro repositório | ||
E inserir outro repositório | ||
Então deve exibir os repositórios inseridos | ||
|
||
Cenario: Tentar adicionar sem informar nome | ||
Quando não inserir nenhum valor | ||
Então não deve haver modificação |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# language: pt | ||
|
||
Funcionalidade: Remover | ||
|
||
Contexto: Lista com itens na home | ||
Dado que esteja na home | ||
E que haja itens na lista | ||
|
||
Cenario: Remover um dos repositórios da lista | ||
Quando remover item | ||
Então deverá tê-lo removido da lista | ||
|
||
Cenario: Remover mais de um dos repositórios da lista | ||
Quando remover item | ||
E remover outro item | ||
Então deverá tê-los removidos da lista | ||
|
||
Cenario: Limpar a lista | ||
Quando limpar a lista | ||
Então a lista deve estar vazia | ||
|
||
Cenario: Tentar limpar uma lista vazia | ||
Dado que esteja na home | ||
E que a lista esteja vazia | ||
Quando limpar a lista | ||
Então não deve haver modificação |