def createProfile(self): self.addSections(PersonalSection()) self.addSections(AlbumSection())
def createProfile(self): self.addSections(PersonalSection()) self.addSections(PublicationSection())
def test_class_personalSession(self): msg = 'Dados Pessoais' objeto = PersonalSection() assert isinstance(objeto, PersonalSection) assert objeto.__str__() == msg assert objeto.__repr__() == msg
def createProfile(self): self.addSections(PersonalSection()) self.addSections(UploadSection())
def test_sobre_PersonalSection(self): objeto = PersonalSection() assert objeto.sobre() == "Sessao para dados pessoais"
def test_instanciar_PersonalSection(self): objeto = PersonalSection() assert isinstance(objeto, PersonalSection)