rust/physfs-rs/tests/test.rs
author Wuzzy <Wuzzy2@mail.ru>
Mon, 14 Jan 2019 05:58:07 +0100
changeset 14576 2087e50e03e2
parent 14435 a1613788130d
permissions -rw-r--r--
ASA: Show current time and personal best in moon02

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