rust/physfs-rs/tests/test.rs
author Anton Malmygin <antonc27@mail.ru>
Mon, 13 May 2019 14:23:25 +0200
changeset 14923 d6e21765912e
parent 14435 a1613788130d
permissions -rw-r--r--
Fix macdeployqt finding with Qt5 on macos

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