emmental/test_emmental.py
Anna Schumaker e0763ec727 curds: Add basic playlist class
The intention is that different playlist types will create a subclass of
this class to do whatever work they need.

Signed-off-by: Anna Schumaker <Anna@NoWheyCreamery.com>
2019-03-07 17:00:58 -05:00

13 lines
404 B
Python

# Copyright 2019 (c) Anna Schumaker.
import curds
import unittest
class TestEmmental(unittest.TestCase):
def test_import_curds(self):
self.assertIsNotNone(curds)
self.assertIsNotNone(curds.data)
self.assertIsNotNone(curds.tags)
self.assertIsNotNone(curds.threadqueue)
self.assertIsNotNone(curds.playlist)
self.assertIsNotNone(curds.playlist.playlist)