rust/physfs-rs/tests/test.rs
author alfadur
Wed, 14 Aug 2019 23:15:15 +0300
changeset 15321 3e34a014b6e8
parent 14440 a1613788130d
permissions -rw-r--r--
update sdl library name

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