mirror of
https://github.com/beetbox/beets.git
synced 2025-12-14 12:35:19 +01:00
--HG-- rename : test/tagtest.py => test/tag.py extra : convert_revision : svn%3A41726ec3-264d-0410-9c23-a9f1637257cc/trunk%4013
13 lines
No EOL
272 B
Python
Executable file
13 lines
No EOL
272 B
Python
Executable file
#!/usr/bin/env python
|
|
import unittest
|
|
|
|
test_modules = ['tag', 'library']
|
|
|
|
def suite():
|
|
s = unittest.TestSuite()
|
|
for mod in map(__import__, test_modules):
|
|
s.addTest(mod.suite())
|
|
return s
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main(defaultTest='suite') |