sipp-rs 0.1.0

Unified Rust library for extensible Sipp inference
1
2
3
4
5
6
7
8
9
10
11
//! Tests the `sipp` crate root public facade helpers.
//!
//! Covers deterministic package metadata without loading local models or calling
//! gateway endpoints.

use super::package_version;

#[test]
fn package_version_matches_manifest_version() {
    assert_eq!(package_version(), env!("CARGO_PKG_VERSION"));
}