Skip to content

Commit

Permalink
Adiciona Arquivo com Sugestões de Testes para #33
Browse files Browse the repository at this point in the history
  • Loading branch information
elissonmichael committed May 23, 2018
1 parent 1acf6e1 commit 2f1ceae
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions extensao_para_string/extensao_string_spec.rb
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

0 comments on commit 2f1ceae

Please sign in to comment.