rust/physfs-rs/tests/test.rs
author Wuzzy <Wuzzy2@mail.ru>
Thu, 10 Oct 2019 00:28:55 +0200
changeset 15455 1ee2736de636
parent 14435 a1613788130d
permissions -rw-r--r--
Backed out changeset 5a934f83d5eb

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