コード例 #1
0
ファイル: test_poco.py プロジェクト: johanmeiring/python-poco
 def test_results_as_dicts(self):
     results = PocoSearcher.results_as_dicts('Wingate Park')
     self.assertIsInstance(results, list)
     self.assertGreater(len(results), 0)
     self.assertIsInstance(results[0], dict)
コード例 #2
0
ファイル: test_poco.py プロジェクト: johanmeiring/python-poco
 def test_no_results(self):
     results = PocoSearcher.results_as_objects('kekekeke')
     self.assertIsInstance(results, list)
     self.assertEqual(len(results), 0)