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