Exemplo n.º 1
0
 def test_not_exists_developer(self):
     apps = developer('twitter')
     self.assertIsNone(apps)
Exemplo n.º 2
0
 def test_twitter_with_numbers(self):
     apps = developer('Twitter, Inc.')
     self.assertIsInstance(apps, list)
     self.assertEqual(len(apps), 2)
Exemplo n.º 3
0
 def test_not_exists_developer(self):
     apps = developer('twitter')
     self.assertEqual(len(apps), 0)
Exemplo n.º 4
0
 def test_zynga_first_ten(self):
     apps = developer('Zynga', num=10)
     self.assertIsInstance(apps, list)
     self.assertEqual(len(apps), 10)
Exemplo n.º 5
0
 def test_not_exists_developer(self):
     apps = developer('twitter')
     self.assertEqual(len(apps), 0)
Exemplo n.º 6
0
 def test_zynga_first_ten(self):
     apps = developer('Zynga', num=10)
     self.assertIsInstance(apps, list)
     self.assertEqual(len(apps), 10)