rust/physfs-rs/tests/test.rs
author alfadur
Thu, 07 Feb 2019 18:04:53 +0300 (2019-02-07)
changeset 14695 216d39de1a44
parent 14435 a1613788130d
permissions -rw-r--r--
fix official server build & bump dependencies
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());
}