File: test_bar

package info (click to toggle)
pyqi 0.3.2%2Bdfsg-7
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 916 kB
  • sloc: python: 2,705; makefile: 136
file content (22 lines) | stat: -rw-r--r-- 401 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/python3

__author__ = "b"
__copyright__ = "q"
__credits__ = ["b", "1", "2", "3"]
__license__ = "c"
__version__ = "123"
__maintainer__ = "b"
__email__ = "a"

from unittest import TestCase, main
from FILL IN MODULE PATH import foo

class fooTests(TestCase):
    def setUp(self):
        self.cmd_obj = foo()

    def test_run(self):
        self.fail()

if __name__ == '__main__':
    main()