File: test_module.py

package info (click to toggle)
python-build 1.2.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 508 kB
  • sloc: python: 2,622; makefile: 16
file content (11 lines) | stat: -rw-r--r-- 163 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
# SPDX-License-Identifier: MIT

import build


def test_version():
    assert build.__version__


def test_dir():
    assert set(dir(build)) == set(build.__all__)