Пример #1
0
 def teste_1_nao_eh_primo(self):
     fatorPrimo(1) |should| equal_to(False)
Пример #2
0
 def teste_35_nao_eh_primo(self):
     fatorPrimo(35) |should| equal_to(False)
Пример #3
0
 def test_4_nao_eh_primo(self):
     fatorPrimo(4) |should| equal_to(False)
Пример #4
0
 def teste_5_eh_primo(self):
     fatorPrimo(5) |should| equal_to(True)
Пример #5
0
 def test_3_eh_primo(self):
     fatorPrimo(3) |should| equal_to(True)