rust/physfs-rs/tests/test.rs
author martinraul
Wed, 28 Jun 2023 07:28:52 +0200
changeset 15963 cf5c7fa71134
parent 14435 a1613788130d
permissions -rw-r--r--
Updated Spanish translation Adapted from Pull Request #68 on the GitHub mirror: https://github.com/hedgewars/hw/pull/68

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