File: __init__.py

package info (click to toggle)
python-mpegdash 0.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 252 kB
  • sloc: python: 914; makefile: 5
file content (7 lines) | stat: -rw-r--r-- 151 bytes parent folder | download
1
2
3
4
5
6
7
import unittest


def my_module_suite():
    loader = unittest.TestLoader()
    suite = loader.discover('tests', pattern='test_*.py')
    return suite