Files
romm/backend/tests/models/test_rom.py
Michael Manganiello ba21cbc1e1 misc: Separate tests folder from backend code
Create separate `tests/` folder for all tests. This will also simplify
not copying tests code into the Docker image.
2025-08-08 12:49:13 -03:00

7 lines
172 B
Python

from models.rom import Rom
def test_rom(rom: Rom):
assert rom.fs_path == "test_platform_slug/roms"
assert rom.full_path == "test_platform_slug/roms/test_rom.zip"