mirror of
https://github.com/daylinmorgan/viv.git
synced 2024-11-12 12:13:15 -06:00
18 lines
348 B
Python
18 lines
348 B
Python
|
from viv import SpecifierSet, Version, toml_loads
|
||
|
|
||
|
|
||
|
def test_packaging():
|
||
|
assert Version("3.6") in SpecifierSet(">=3.6")
|
||
|
|
||
|
|
||
|
def test_tomli():
|
||
|
assert {"requires-python": ">3.6", "dependencies": ["rich", "typer"]} == toml_loads(
|
||
|
"""
|
||
|
requires-python = ">3.6"
|
||
|
dependencies = [
|
||
|
"rich",
|
||
|
"typer"
|
||
|
]
|
||
|
"""
|
||
|
)
|