Failing test for #124

This commit is contained in:
hugovk 2015-04-26 20:10:24 +03:00
parent 8f124f97a8
commit be8ae40caf

View file

@ -1101,6 +1101,14 @@ class TestPyLast(unittest.TestCase):
# Assert # Assert
self.helper_only_one_thing_in_top_list(tags, pylast.Tag) self.helper_only_one_thing_in_top_list(tags, pylast.Tag)
def test_network_get_top_tags_with_no_limit(self):
# Arrange
# Act
tags = self.network.get_top_tags()
# Assert
self.helper_at_least_one_thing_in_top_list(tags, pylast.Tag)
def test_network_get_top_tracks_with_limit(self): def test_network_get_top_tracks_with_limit(self):
# Arrange # Arrange
# Act # Act