rust/physfs-rs/tests/test.rs
author unC0Rr
Mon, 16 Sep 2024 16:57:11 +0200
branchtransitional_engine
changeset 16034 09beeec033ba
parent 14435 a1613788130d
permissions -rw-r--r--
Sanitize maze mapgen code a bit

extern crate physfs;

use physfs::PhysFSContext;

mod directory;

// from project_root
const PATH_TO_HERE: &'static str = "tests/";

//#[test]
fn test_create_physfs_context() {
    let _c = PhysFSContext::new().unwrap();
    assert!(PhysFSContext::is_init());
}