예제 #1
0
 def test_class_instagram(self):
     objeto = instagram()
     assert isinstance(objeto, instagram)
     profile_type = 'instagram'
     profile = eval(profile_type.lower())()
     assert str(
         profile.getSections()) == '[Dados Pessoais, Sessão publicações]'
 def test_class_instagram_instance(self):
     rede = instagram()
     assert isinstance(rede, instagram)
예제 #3
0
 def test_nome_objeto_ok(self):
     objeto = instagram()
     assert type(objeto).__name__ == "instagram"
예제 #4
0
 def test_sessoes_objeto_ok(self):
     objeto = instagram()
     assert str(
         objeto.getSections()) == "[Dados Pessoais, Sessão para fotos]"
예제 #5
0
 def test_instanciar_objeto_ok(self):
     objeto = instagram()
     assert isinstance(objeto, instagram)