mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 08:39:17 +01:00
--HG-- rename : beets/tag.py => beets/mediafile.py extra : convert_revision : svn%3A41726ec3-264d-0410-9c23-a9f1637257cc/trunk%4050
13 lines
No EOL
288 B
Python
Executable file
13 lines
No EOL
288 B
Python
Executable file
#!/usr/bin/env python
|
|
import unittest
|
|
|
|
test_modules = ['test_mediafile', 'test_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') |