-
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.
Merge pull request #55 from henriquetatagiba/master
Adiciona Soluções do Aluno Henrique
- Loading branch information
Showing
1 changed file
with
49 additions
and
0 deletions.
There are no files selected for viewing
49 changes: 49 additions & 0 deletions
49
#33 extensao_para_string/2018-2/Henrique_Tatagiba/extensao_string_spec.rb
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,49 @@ | ||
require 'minitest/autorun' | ||
require_relative '../../extensao_string.rb' | ||
|
||
describe 'String' do | ||
describe '#titleize' do | ||
it 'escreve com letra maiúscula cada palavra em uma string' do | ||
'hello world'.titleize.must_equal 'Hello World' | ||
end | ||
|
||
it 'funciona com strings de uma palavra' do | ||
'hello'.titleize.must_equal 'Hello' | ||
end | ||
|
||
it 'escreve com letra maiúscula string toda em maiúsculo' do | ||
'HELLO WORLD'.titleize.must_equal 'Hello World' | ||
end | ||
|
||
it 'escreve com letra maiúscula strings com letras misturadas' do | ||
'HeLlO WoRLD'.titleize.must_equal 'Hello World' | ||
end | ||
end | ||
|
||
describe '#blank?' do | ||
it 'retorna true se a string é vazia' do | ||
''.blank?.must_equal true | ||
end | ||
|
||
it 'retorna true se a string contém apenas espaços' do | ||
' '.blank?.must_equal true | ||
end | ||
|
||
it 'retorna true se a string contém apenas tabs' do | ||
# exemplo: '\t\t\t' | ||
"\t\t\t".blank?.must_equal true | ||
end | ||
|
||
it 'retorna true se a string contém apenas espaços e tabs' do | ||
" \t \t ".blank?.must_equal true | ||
end | ||
|
||
it 'retorna false se a string contém uma letra' do | ||
'h'.blank?.must_equal false | ||
end | ||
|
||
it 'retorna false se a string contém um número' do | ||
'1'.blank?.must_equal false | ||
end | ||
end | ||
end |