File: __init__.py

package info (click to toggle)
python-mpegdash 0.1.5-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 216 kB
  • sloc: python: 776; makefile: 5
file content (10 lines) | stat: -rw-r--r-- 201 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
try:
    import unittest2 as unittest
except:
    import unittest


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