Add test case for #70: username parameter already supported for track.getInfo to get user's play count

This commit is contained in:
hugovk 2014-03-03 12:16:22 +02:00
parent 023828c07a
commit 3a0e69f218

View file

@ -484,6 +484,20 @@ class TestPyLast(unittest.TestCase):
# Assert # Assert
self.assertGreaterEqual(int(total), 0) self.assertGreaterEqual(int(total), 0)
def test_user_play_count_in_track_info(self):
# Arrange
artist = "Test Artist"
title = "Test Title"
track = pylast.Track(artist = artist, title = title, network = self.network, username = self.username)
# Act
count = track.get_userplaycount()
# Assert
self.assertGreaterEqual(count, 0)
if __name__ == '__main__': if __name__ == '__main__':
# For quick testing of a single case (eg. test = "test_scrobble") # For quick testing of a single case (eg. test = "test_scrobble")