-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adiciona Arquivo com Sugestões de Testes para #33
- Loading branch information
1 parent
1acf6e1
commit 2f1ceae
Showing
1 changed file
with
32 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,32 @@ | ||
describe 'String' do | ||
|
||
describe "#titleize" do | ||
|
||
it "escreve com letra maiúscula cada palavra em uma string" | ||
|
||
it "funciona com strings de uma palavra" | ||
|
||
it "escreve com letra maiúscula string toda em maiúsculo" | ||
|
||
it "escreve com letra maiúscula strings com letras misturadas" | ||
|
||
end | ||
|
||
describe '#blank?' do | ||
|
||
it "retorna true se a string é vazia" | ||
|
||
it "retorna true se a string contém apenas espaços" | ||
|
||
it "retorna true se a string contém apenas tabs" | ||
# exemplo: "\t\t\t" | ||
|
||
it "retorna true se a string contém apenas espaços e tabs" | ||
|
||
it "retorna false se a string contém uma letra" | ||
|
||
it "retorna false se a string contém um número" | ||
|
||
end | ||
|
||
end |