File: test_dummy.py

package info (click to toggle)
ptpython 3.0.32-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 840 kB
  • sloc: python: 4,509; makefile: 5
file content (31 lines) | stat: -rwxr-xr-x 786 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
22
23
24
25
26
27
28
29
30
31
#!/usr/bin/env python
from __future__ import annotations

import ptpython.completer
import ptpython.eventloop
import ptpython.filters
import ptpython.history_browser
import ptpython.key_bindings
import ptpython.layout
import ptpython.python_input
import ptpython.repl
import ptpython.style
import ptpython.utils
import ptpython.validator

# For now there are no tests here.
# However this is sufficient to do at least a syntax check.


def test_dummy() -> None:
    assert ptpython.completer
    assert ptpython.eventloop
    assert ptpython.filters
    assert ptpython.history_browser
    assert ptpython.key_bindings
    assert ptpython.layout
    assert ptpython.python_input
    assert ptpython.repl
    assert ptpython.style
    assert ptpython.utils
    assert ptpython.validator