rust/physfs-rs/tests/test.rs
author unc0rr
Tue, 01 Jan 2019 02:25:18 +0100
changeset 14507 184df3900ec4
parent 14435 a1613788130d
permissions -rw-r--r--
- Bots activate extra time if needed - Refactor work with forecast of time needed to perform planned actions (ticks variable)

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