This repository has been archived on 2024-10-16. You can view files and clone it, but cannot push or open issues or pull requests.
2023-07-07 00:36:49 +02:00
|
|
|
/// # tests for the general behaviour of the libraries availability
|
|
|
|
///
|
|
|
|
/// These tests will not go very in depth
|
|
|
|
|
|
|
|
// IMPORTS /////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
use libpt;
|
|
|
|
|
2023-07-08 00:37:07 +02:00
|
|
|
/// ## check if libpt is loaded
|
2023-07-07 00:36:49 +02:00
|
|
|
#[test]
|
2023-07-08 00:37:07 +02:00
|
|
|
fn test_libpt_is_loaded() {
|
|
|
|
assert!(libpt::is_loaded())
|
2023-07-07 00:36:49 +02:00
|
|
|
}
|