File: test_compile.py

package info (click to toggle)
ndms2-client 0.1.3-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 136 kB
  • sloc: python: 846; makefile: 8; sh: 6
file content (12 lines) | stat: -rwxr-xr-x 320 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/python3
import os
import sys
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))


# this is a dummy test showing that code compiles
def test_compile():
    from ndms2_client import TelnetConnection, Client

    assert TelnetConnection is not None
    assert Client is not None