rust/physfs-rs/tests/test.rs
author Wuzzy <Wuzzy2@mail.ru>
Wed, 19 Dec 2018 01:02:06 +0100
changeset 14477 8d5034f7cc19
parent 14440 a1613788130d
permissions -rw-r--r--
Disable caption and FollowGear for crates that spawn before 1st turn (useful for missions)

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