rust/physfs-rs/tests/test.rs
author Wuzzy <Wuzzy2@mail.ru>
Mon, 27 May 2019 16:43:42 +0200
changeset 15071 d75ce53d811e
parent 14440 a1613788130d
permissions -rw-r--r--
Background theme detection: Also check if Border.png is present

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