rust/physfs-rs/tests/test.rs
author unC0Rr
Thu, 22 Oct 2020 12:33:35 +0200
branch1.0.0
changeset 15887 6b10b0cdbeab
parent 14456 a1613788130d
permissions -rw-r--r--
Mark global variables in implementation section static

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