Exemplo n.º 1
0
    def test_person_not_indb(self):

        with self.assertRaises(Exception) as x:
            persons.scrape('asd')
        self.assertTrue(x.exception, Exception('username not in database'))
Exemplo n.º 2
0
 def test_alreadyscraped(self):
     a = persons.scrape('shaddygarg')
     a = persons.scrape('shaddygarg')
     self.assertEqual(a, persons.person.names['shaddygarg'].show())
Exemplo n.º 3
0
 def test_favs_not_exist(self):
     a = persons.scrape('swapnil.negi09')
     self.assertEqual(a, 'no favourites to show')
Exemplo n.º 4
0
 def test_favs_exist(self):
     a = persons.scrape('k4ni5h')
     self.assertEqual(type(a), type({}))
Exemplo n.º 5
0
 def test_work_not_exist(self):
     with self.assertRaises(AttributeError):
         persons.scrape('abk.maloo')
         persons.person.names['abk.maloo'].work