mirror of
https://github.com/enpaul/tox-poetry-installer.git
synced 2024-10-29 19:47:00 +00:00
Add trivial tests to ensure metadata consistency between pyroject and module
This commit is contained in:
parent
7d3fd324e5
commit
eed2038e63
39
tests/test_metadata.py
Normal file
39
tests/test_metadata.py
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
"""Ensure that the pyproject and module metadata never drift out of sync
|
||||||
|
|
||||||
|
The next best thing to having one source of truth is having a way to ensure all of your
|
||||||
|
sources of truth agree with each other.
|
||||||
|
"""
|
||||||
|
from pathlib import Path
|
||||||
|
|
||||||
|
import toml
|
||||||
|
|
||||||
|
import tox_poetry_installer
|
||||||
|
|
||||||
|
|
||||||
|
def test_metadata():
|
||||||
|
"""Test that module metadata matches pyproject poetry metadata"""
|
||||||
|
|
||||||
|
with (Path(__file__).resolve().parent / ".." / "pyproject.toml").open() as infile:
|
||||||
|
pyproject = toml.load(infile, _dict=dict)
|
||||||
|
|
||||||
|
assert pyproject["tool"]["poetry"]["name"] == tox_poetry_installer.__title__
|
||||||
|
assert pyproject["tool"]["poetry"]["version"] == tox_poetry_installer.__version__
|
||||||
|
assert pyproject["tool"]["poetry"]["license"] == tox_poetry_installer.__license__
|
||||||
|
assert (
|
||||||
|
pyproject["tool"]["poetry"]["description"] == tox_poetry_installer.__summary__
|
||||||
|
)
|
||||||
|
assert pyproject["tool"]["poetry"]["repository"] == tox_poetry_installer.__url__
|
||||||
|
assert (
|
||||||
|
all(
|
||||||
|
item in tox_poetry_installer.__authors__
|
||||||
|
for item in pyproject["tool"]["poetry"]["authors"]
|
||||||
|
)
|
||||||
|
is True
|
||||||
|
)
|
||||||
|
assert (
|
||||||
|
all(
|
||||||
|
item in pyproject["tool"]["poetry"]["authors"]
|
||||||
|
for item in tox_poetry_installer.__authors__
|
||||||
|
)
|
||||||
|
is True
|
||||||
|
)
|
Loading…
Reference in New Issue
Block a user