rust/physfs-rs/tests/test.rs
author unc0rr
Tue, 15 Jun 2021 20:46:28 +0200
changeset 15793 96443d9b48c9
parent 14435 a1613788130d
permissions -rw-r--r--
Update mingpt plugin to include recent chat history in the seed

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