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 /////////////////////////////////////////////////////////////////////////////////////////
|
2023-07-09 21:16:23 +02:00
|
|
|
use pt;
|
2023-07-07 00:36:49 +02:00
|
|
|
|
2023-07-09 21:16:23 +02:00
|
|
|
/// ## check if pt is loaded
|
2023-07-07 00:36:49 +02:00
|
|
|
#[test]
|
2023-07-09 21:16:23 +02:00
|
|
|
fn test_pt_is_loaded() {
|
|
|
|
assert!(pt::is_loaded())
|
2023-07-07 00:36:49 +02:00
|
|
|
}
|