You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains hidden or 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
This file contains hidden or 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
it 'deve retornar um sobrenome em caixa alta na frente do nome' do
@author.name = "Andre Silva"
@author.name.should eql("SILVA, Andre")
end
it 'deve retornar dois sobrenomes em caixa alta na frente do nome' do
@author.name = "Caio Domingos Prado"
@author.name.should eql("DOMINGOS PRADO, Caio")
end
it 'deve ignorar de... como sobrenome' do
@author.name = "Jose de Bla"
@author.name.should eql "BLA, Jose de"
end
it 'deve resistir a um teste dificil' do
@author.name = "Pedro de Alcântara Francisco Antônio João Carlos Xavier de Paula Miguel Rafael Joaquim José Gonzaga Pascoal Cipriano Serafim de Bragança e Bourbon"
@author.name.should eql "ALCÂNTARA FRANCISCO ANTÔNIO JOÃO CARLOS XAVIER DE PAULA MIGUEL RAFAEL JOAQUIM JOSÉ GONZAGA PASCOAL CIPRIANO SERAFIM DE BRAGANÇA E BOURBON, Pedro de"