File: test_module.py

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

from __future__ import annotations

import build


def test_version():
    assert build.__version__


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