mirror of
https://github.com/rommapp/romm.git
synced 2026-06-27 22:35:57 +00:00
Agent-Logs-Url: https://github.com/rommapp/romm/sessions/9cc2e55e-af48-40bd-b2e9-492b6fd6046a Co-authored-by: gantoine <3247106+gantoine@users.noreply.github.com>
14 lines
341 B
Python
14 lines
341 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"
|
|
|
|
|
|
def test_rom_with_libretro_match_is_identified(rom: Rom):
|
|
rom.libretro_id = "abc123"
|
|
|
|
assert rom.is_unidentified is False
|
|
assert rom.is_identified is True
|