-
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 README para a Atividade #33
- Loading branch information
1 parent
67ad36f
commit 9621999
Showing
2 changed files
with
22 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,19 @@ | ||
## Escrever Testes para Extensão de String | ||
|
||
Escrever testes para duas funções extras implementadas para a classe String. | ||
|
||
Orientações: | ||
|
||
1. Escolha um dos dos arquivos de teste: `extensao_string_spec` ou `extensao_string_test`; | ||
2. Copie ele para a pasta `aaaa-s`, por exemplo `2018-2` (ano-semestre); | ||
3. Renomeie o arquivo com o seu nome; | ||
4. Escreva seus testes nesse arquivo, não altere os arquivos originais; | ||
5. Lembre-se de atualizar o caminho no `require_relative` do arquivo `extensao_string`; | ||
6. Certifique-se de que seu arquivo está executando sem erros; | ||
7. Faça um commit com a hashtag #33 contendo *apenas* os arquivos da sua solução criados dentro da pasta mencionada no item 2. | ||
|
||
Resumos para Ajudar: | ||
|
||
- [Minitest](https://gist.github.com/elissonmichael/6d2396a8c3a86697bb947724919d973a) | ||
- [Rspec](https://gist.github.com/elissonmichael/455c7fa6f25f4cff6e493cd0f40135ea) | ||
- [Rspec - Stub](https://gist.github.com/elissonmichael/b99ff1506080bc30cdc93e95cd509c6a) |
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 |
---|---|---|
@@ -1,3 +1,6 @@ | ||
require 'minitest/autorun' | ||
require_relative 'extensao_string' | ||
|
||
describe 'String' do | ||
|
||
describe "#titleize" do | ||
|