예제 #1
0
파일: test_art.py 프로젝트: zhang-xun/beets
 def test_google_art_finds_image(self):
     album = _common.Bag(albumartist="some artist", album="some album")
     json = """{"responseData": {"results":
         [{"unescapedUrl": "url_to_the_image"}]}}"""
     self.mock_response(self._google_url, json)
     result_url = fetchart.google_art(album)
     self.assertEqual(result_url, 'url_to_the_image')
예제 #2
0
파일: test_art.py 프로젝트: Lukas0907/beets
 def test_google_art_finds_image(self):
     album = _common.Bag(albumartist="some artist", album="some album")
     json = """{"responseData": {"results":
         [{"unescapedUrl": "url_to_the_image"}]}}"""
     self.mock_response(self._google_url, json)
     result_url = fetchart.google_art(album)
     self.assertEqual(result_url, 'url_to_the_image')
예제 #3
0
파일: test_art.py 프로젝트: zhang-xun/beets
 def test_google_art_dont_finds_image(self):
     album = _common.Bag(albumartist="some artist", album="some album")
     json = """bla blup"""
     self.mock_response(self._google_url, json)
     result_url = fetchart.google_art(album)
     self.assertEqual(result_url, None)
예제 #4
0
파일: test_art.py 프로젝트: Lukas0907/beets
 def test_google_art_dont_finds_image(self):
     album = _common.Bag(albumartist="some artist", album="some album")
     json = """bla blup"""
     self.mock_response(self._google_url, json)
     result_url = fetchart.google_art(album)
     self.assertEqual(result_url, None)