pt/tests/lib.rs

13 lines
318 B
Rust
Raw Normal View History

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
}