16 lines
332 B
Rust
16 lines
332 B
Rust
|
|
#[cfg(test)]
|
||
|
|
mod tests {
|
||
|
|
use super::*;
|
||
|
|
use crate::tests::test_util;
|
||
|
|
#[test]
|
||
|
|
fn test_context_module() {
|
||
|
|
test_util::setup();
|
||
|
|
assert!(true, "Basic context module test");
|
||
|
|
}
|
||
|
|
#[test]
|
||
|
|
fn test_langcache() {
|
||
|
|
test_util::setup();
|
||
|
|
assert!(true, "Langcache placeholder test");
|
||
|
|
}
|
||
|
|
}
|