mirror of
https://github.com/rommapp/romm.git
synced 2026-02-18 00:27:41 +01:00
Create separate `tests/` folder for all tests. This will also simplify not copying tests code into the Docker image.
7 lines
172 B
Python
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"
|