Skip to main content

tapid_test_support/
lib.rs

1//! Test fixtures and support utilities for Tapid.
2//!
3//! This crate is an experimental workspace boundary. Public APIs will be added
4//! only when the corresponding Tapid behavior is implemented and tested.
5
6#![deny(unsafe_code)]
7
8/// Returns the current crate version.
9///
10/// This small API keeps the initial scaffold non-empty while the crate
11/// boundary is being established.
12pub const VERSION: &str = env!("CARGO_PKG_VERSION");
13
14#[cfg(test)]
15mod tests {
16    use super::VERSION;
17
18    #[test]
19    fn version_is_present() {
20        assert!(!VERSION.is_empty());
21    }
22}