rust/physfs-rs/tests/test.rs
author unC0Rr
Sun, 12 Feb 2023 14:19:02 +0100
branchtransitional_engine
changeset 15918 9bd828451d77
parent 14435 a1613788130d
permissions -rw-r--r--
Fix several issues with transformations, more work on getting generated image

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