def test_class_github_instance(self):
     rede = github()
     assert isinstance(rede, github)
예제 #2
0
 def test_class_github(self):
     objeto = github()
     assert isinstance(objeto, github)
     profile_type = 'github'
     profile = eval(profile_type.lower())()
     assert str(profile.getSections()) == '[Dados Pessoais, Sessão codigos]'
예제 #3
0
 def test_nome_objeto_ok(self):
     objeto = github()
     assert type(objeto).__name__ == "github"
예제 #4
0
 def test_sessoes_objeto_ok(self):
     objeto = github()
     assert str(
         objeto.getSections()) == "[Dados Pessoais, Sessão para Upload]"
예제 #5
0
 def test_instanciar_objeto_ok(self):
     objeto = github()
     assert isinstance(objeto, github)