rust/physfs-rs/tests/test.rs
author sheepluva
Sat, 07 Dec 2019 23:58:37 +0100
branchhedgeroid
changeset 15535 f0bf14ead75c
parent 14456 a1613788130d
permissions -rw-r--r--
hedgeroid: adjust build.xml: fix app name; set java version; print hint if sdk build.xml is missing

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