rust/physfs-rs/tests/test.rs
author unC0Rr
Tue, 03 Dec 2024 14:12:28 +0100
branchtransitional_engine
changeset 16075 1f35c7974b4b
parent 14456 a1613788130d
permissions -rw-r--r--
Add one more template

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());
}