rust/physfs-rs/tests/test.rs
author Wuzzy <Wuzzy2@mail.ru>
Mon, 03 Jun 2019 12:50:22 +0200
changeset 15109 61fb9527d17a
parent 14440 a1613788130d
permissions -rw-r--r--
Remove some accidental advertisements in de.txt and en.txt

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