rust/physfs-rs/tests/test.rs
author Grigory Ustinov <grenka@altlinux.org>
Thu, 26 Sep 2019 19:01:03 +0300
changeset 15443 2e5d1078cb18
parent 14456 a1613788130d
permissions -rw-r--r--
Update localization of russian tips

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