Example #1
0
 def test_top_songs(self):
     """ Test artists from top songs from iTunes """
     
     rss  = AppleRSS()
     objs = rss.get_top_songs(limit=10)
     
     self.__test_artists('top_songs', objs)
Example #2
0
 def test_top_tracks(self):
     """ Test the top tracks from iTunes """
     
     rss    = AppleRSS()
     tracks = rss.get_top_songs(limit=10)
     
     self.__test_tracks('top_tracks', tracks)