rust/physfs-rs/tests/test.rs
author alfadur
Thu, 07 Feb 2019 23:34:24 +0300
changeset 14718 f64e21f164a5
parent 14456 a1613788130d
permissions -rw-r--r--
fix some warnings

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