]> git.phdru.name Git - m_librarian.git/blob - tests/test_glst.py
Use pytest for testing
[m_librarian.git] / tests / test_glst.py
1
2 from tests import TestCase
3 from m_librarian.db import Genre
4 from m_librarian.glst import import_glst
5
6
7 class TestGlst(TestCase):
8     def test_import_glst(self):
9         import_glst()
10         self.assertEqual(Genre.select().count(), 340)