rust/physfs-rs/tests/test.rs
author Wuzzy <Wuzzy2@mail.ru>
Thu, 11 Jul 2019 05:07:55 +0200
changeset 15233 1dd99fc2a0e8
parent 14440 a1613788130d
permissions -rw-r--r--
Air attack: Replace smoke with bubbles when underwater

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