1*09752d44SJed Brown /// Basic smoke test to confirm that the library is callable. 2*09752d44SJed Brown #[test] test_import()3*09752d44SJed Brownfn test_import() { 4*09752d44SJed Brown use libceed_sys::bind_ceed; 5*09752d44SJed Brown unsafe { 6*09752d44SJed Brown bind_ceed::CeedRegisterAll(); 7*09752d44SJed Brown } 8*09752d44SJed Brown } 9