changeset 14456 | a1613788130d |
14455:632dfc73cf83 | 14456: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 |