rust/physfs-rs/tests/test.rs
author Wuzzy <Wuzzy2@mail.ru>
Sat, 06 Jun 2020 15:10:41 +0200
changeset 15619 3409433a236a
parent 14456 a1613788130d
permissions -rw-r--r--
Fix many gears not being affected by gfMoreWind on turn end

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