rust/physfs-rs/tests/test.rs
author nemo
Tue, 24 Dec 2019 12:46:23 -0500
changeset 15524 fbcee515b946
parent 14435 a1613788130d
permissions -rw-r--r--
disable fall tracing for cheese. it will probably be incorrect.

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