File: test_basic_import.py

package info (click to toggle)
otf2 3.1.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 29,000 kB
  • sloc: ansic: 92,997; python: 16,977; cpp: 9,057; sh: 6,299; makefile: 238; awk: 54
file content (15 lines) | stat: -rw-r--r-- 239 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import unittest


class BasicImportTest(unittest.TestCase):
    @staticmethod
    def test_import_ll():
        import _otf2

    @staticmethod
    def test_import_hl():
        import otf2


if __name__ == '__main__':
    unittest.main()