Files
dibbler/tests/queries/test_product_owners.py
h7x4 2e66a9a4b0
All checks were successful
Run tests / run-tests (push) Successful in 41s
fixup! WIP
2025-12-09 18:53:14 +09:00

13 lines
814 B
Python

from sqlalchemy.orm import Session
def test_product_owners_no_transactions(sql_session: Session) -> None: ...
def test_product_owners_add_products(sql_session: Session) -> None: ...
def test_product_owners_add_and_buy_products(sql_session: Session) -> None: ...
def test_product_owners_add_and_throw_products(sql_session: Session) -> None: ...
def test_product_owners_multiple_users(sql_session: Session) -> None: ...
def test_product_owners_adjust_stock_down(sql_session: Session) -> None: ...
def test_product_owners_adjust_stock_up(sql_session: Session) -> None: ...
def test_product_owners_negative_stock(sql_session: Session) -> None: ...
def test_product_owners_add_products_from_negative_stock(sql_session: Session) -> None: ...
def test_product_owners_interleaved_users(sql_session: Session) -> None: ...