# test_songs.py


from songs import *
import unittest



class SongCollectionTest(unittest.TestCase):
    def test_new_collections_have_size_zero(self):
        collection = SongCollection()
        self.assertEqual(collection.size(), 0)



if __name__ == '__main__':
    unittest.main()
