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.
pt/tests/lib.rs

13 lines
330 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 /////////////////////////////////////////////////////////////////////////////////////////
use libpt;
/// ## check if libpt is loaded
2023-07-07 00:36:49 +02:00
#[test]
fn test_libpt_is_loaded() {
assert!(libpt::is_loaded())
2023-07-07 00:36:49 +02:00
}