File: test_init.py

package info (click to toggle)
helpdev 0.7.1-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 612 kB
  • sloc: python: 648; makefile: 14
file content (18 lines) | stat: -rw-r--r-- 397 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

import helpdev


def test_run_subprocess_split():
    helpdev._run_subprocess_split("ls")

def test_check_float():
    output = helpdev.check_float()
    (isinstance(output, dict))

def test_check_thread():
    output = helpdev.check_thread()
    assert(isinstance(output, dict))

def test_check_python_packages():
    output = helpdev.check_python_packages()
    assert isinstance(output, dict)