rust/physfs-rs/tests/test.rs
author raptor <buckyballreaction@gmail.com>
Tue, 13 Aug 2019 09:50:24 -0600
changeset 15315 272dc9967fd3
parent 14440 a1613788130d
permissions -rw-r--r--
Make hardware acceleration optional on MacOS X

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