added integration test for Game & export_link on Game

This commit is contained in:
2026-03-17 14:28:43 +01:00
parent 9df1ec77ef
commit 132f784d58
2 changed files with 34 additions and 0 deletions

View File

@@ -39,6 +39,13 @@ fn parse_complex() {
"Installed game wrong path"
);
assert!(
config
.game_by_id("sse")
.is_some_and(|e| e.install_location().is_absolute()),
"Relative game path was not resolved to absolute"
);
assert!(
config
.game_by_id("sse")