rust/physfs-rs/tests/test.rs
author alfadur
Sun, 21 Jun 2020 22:30:59 +0300 (2020-06-21)
changeset 15626 b0078df61a59
parent 14435 a1613788130d
permissions -rw-r--r--
add 🐼 hat
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());
}