rmcl 0.4.0

A fully featured Minecraft TUI launcher
1
2
3
4
5
6
7
8
9
10
use super::*;

#[test]
fn log_dir_builds_correct_path() {
    let p = log_dir(Path::new("/instances"), "my-world");
    assert_eq!(
        p,
        PathBuf::from("/instances/my-world/minecraft/logs/launches")
    );
}