rust/physfs-rs/tests/test.rs
changeset 14435 a1613788130d
equal deleted inserted replaced
14434:632dfc73cf83 14435:a1613788130d
       
     1 extern crate physfs;
       
     2 
       
     3 use physfs::PhysFSContext;
       
     4 
       
     5 mod directory;
       
     6 
       
     7 // from project_root
       
     8 const PATH_TO_HERE: &'static str = "tests/";
       
     9 
       
    10 //#[test]
       
    11 fn test_create_physfs_context() {
       
    12     let _c = PhysFSContext::new().unwrap();
       
    13     assert!(PhysFSContext::is_init());
       
    14 }
       
    15