rust/physfs-rs/tests/test.rs
author alfadur
Fri, 26 Jun 2020 19:35:16 +0300
changeset 15662 8416b08ffdbb
parent 14456 a1613788130d
permissions -rw-r--r--
add sentry walking cycle

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