File: test_bar

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

__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()