25 lines
558 B
Rust
25 lines
558 B
Rust
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
use crate::tests::test_util;
|
|
#[test]
|
|
fn test_shared_module() {
|
|
test_util::setup();
|
|
assert!(true, "Basic shared module test");
|
|
}
|
|
#[test]
|
|
fn test_models() {
|
|
test_util::setup();
|
|
assert!(true, "Models placeholder test");
|
|
}
|
|
#[test]
|
|
fn test_state() {
|
|
test_util::setup();
|
|
assert!(true, "State placeholder test");
|
|
}
|
|
#[test]
|
|
fn test_utils() {
|
|
test_util::setup();
|
|
assert!(true, "Utils placeholder test");
|
|
}
|
|
}
|