Files
uv/test/packages/built-by-uv/tests/test_package.py
T
Zanie Blue a70ee58ae1 Move test support files out of scripts/ into test/
(#17032)

It's been bothering me that we have a bunch of stub packages and such in
a `scripts` directory.
2025-12-09 10:06:05 -06:00

12 lines
213 B
Python

import pytest
from built_by_uv import greet
from built_by_uv.arithmetic.circle import area
def test_circle():
assert area(2) == pytest.approx(12.56636)
def test_greet():
assert greet() == "Hello 👋"