rust/physfs-rs/tests/test.rs
author Wuzzy <Wuzzy2@mail.ru>
Wed, 23 Jan 2019 03:46:32 +0100
changeset 14690 fd22b6d474e7
parent 14456 a1613788130d
permissions -rw-r--r--
Fix AI trying to use tardis during multishoot

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