Update metadata tests to load metadata from new location

This commit is contained in:
Ethan Paul 2020-11-11 21:28:01 -05:00
parent b57b78d4e2
commit 106d1bf6cf
No known key found for this signature in database
GPG Key ID: D0E2CBF1245E92BF

View File

@ -7,7 +7,7 @@ from pathlib import Path
import toml import toml
import tox_poetry_installer from tox_poetry_installer import __about__
def test_metadata(): def test_metadata():
@ -16,16 +16,14 @@ def test_metadata():
with (Path(__file__).resolve().parent / ".." / "pyproject.toml").open() as infile: with (Path(__file__).resolve().parent / ".." / "pyproject.toml").open() as infile:
pyproject = toml.load(infile, _dict=dict) pyproject = toml.load(infile, _dict=dict)
assert pyproject["tool"]["poetry"]["name"] == tox_poetry_installer.__title__ assert pyproject["tool"]["poetry"]["name"] == __about__.__title__
assert pyproject["tool"]["poetry"]["version"] == tox_poetry_installer.__version__ assert pyproject["tool"]["poetry"]["version"] == __about__.__version__
assert pyproject["tool"]["poetry"]["license"] == tox_poetry_installer.__license__ assert pyproject["tool"]["poetry"]["license"] == __about__.__license__
assert ( assert pyproject["tool"]["poetry"]["description"] == __about__.__summary__
pyproject["tool"]["poetry"]["description"] == tox_poetry_installer.__summary__ assert pyproject["tool"]["poetry"]["repository"] == __about__.__url__
)
assert pyproject["tool"]["poetry"]["repository"] == tox_poetry_installer.__url__
assert ( assert (
all( all(
item in tox_poetry_installer.__authors__ item in __about__.__authors__
for item in pyproject["tool"]["poetry"]["authors"] for item in pyproject["tool"]["poetry"]["authors"]
) )
is True is True
@ -33,7 +31,7 @@ def test_metadata():
assert ( assert (
all( all(
item in pyproject["tool"]["poetry"]["authors"] item in pyproject["tool"]["poetry"]["authors"]
for item in tox_poetry_installer.__authors__ for item in __about__.__authors__
) )
is True is True
) )