rust/physfs-rs/tests/test.rs
author Wuzzy <Wuzzy2@mail.ru>
Sat, 15 Jun 2019 01:18:40 +0200
changeset 15161 53342ce3f0a6
parent 14456 a1613788130d
permissions -rw-r--r--
Fix freezer drawing land outside of indestructible land border in some map types

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