merlon 1.3.1

Mod package manager for the Paper Mario (N64) decompilation
Documentation
1
2
3
4
5
6
7
8
9
10
11
use std::path::PathBuf;

pub fn baserom() -> PathBuf {
    PathBuf::from(concat!(env!("CARGO_MANIFEST_DIR"), "/tests/baserom.z64"))
}

/// Check that the baserom exists. It isn't checked into git, so testers should copy theirs to tests/baserom.z64.
#[test]
fn baserom_exists() {
    assert!(baserom().exists());
}