def test_instance_github(self):
     objeto = github()
     assert isinstance(objeto, github)
 def test_tipo_certo_github(self):
     profile_type = 'github'
     profile = eval(profile_type.lower())()
     assert (type(profile).__name__) == 'github'
     profile = github().getSections()
     assert (str(profile)) == '[Dados Pessoais, Sessão Upload]'