rust/physfs-rs/tests/test.rs
author Wuzzy <Wuzzy2@mail.ru>
Wed, 15 May 2019 03:25:20 +0200 (2019-05-15)
changeset 14956 c173fae0a223
parent 14440 a1613788130d
permissions -rw-r--r--
Hide player ranks in training 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());
}