rust/physfs-rs/tests/test.rs
author Wuzzy <Wuzzy2@mail.ru>
Thu, 17 Jan 2019 01:41:44 +0100
changeset 14626 ab6be7d200b0
parent 14435 a1613788130d
permissions -rw-r--r--
ASA fruit01: Add hog appear effect

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