rust/physfs-rs/tests/test.rs
author Anton Malmygin <antonc27@mail.ru>
Sun, 12 May 2019 17:00:01 +0200
changeset 14927 b3890f4311f7
parent 14440 a1613788130d
permissions -rw-r--r--
Fix clang C compilation

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