rust/physfs-rs/tests/test.rs
author Wuzzy <Wuzzy@disroot.org>
Wed, 28 Jun 2023 21:16:14 +0200
changeset 15969 9128bb16aaf5
parent 14435 a1613788130d
permissions -rw-r--r--
CS: Add support for King Mode and PlaceHog

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