rust/physfs-rs/tests/test.rs
author yuenfu
Fri, 19 Apr 2019 17:38:31 +0200
changeset 14835 383d17d41cad
parent 14456 a1613788130d
permissions -rw-r--r--
Add Chinese (zh_TW) translation for campaigns and missions

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