diff -r 632dfc73cf83 -r a1613788130d rust/physfs-rs/tests/test.rs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/rust/physfs-rs/tests/test.rs Thu Dec 13 23:44:46 2018 +0100 @@ -0,0 +1,15 @@ +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()); +} +