File: module.py

package info (click to toggle)
liborcus 0.11.2-3
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 7,320 kB
  • ctags: 4,984
  • sloc: cpp: 30,937; sh: 11,782; makefile: 1,168; xml: 498; python: 431
file content (21 lines) | stat: -rwxr-xr-x 537 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python3
########################################################################
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
########################################################################

import unittest
import orcus


class ModuleTest(unittest.TestCase):

    def test_info(self):
        orcus.info()


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