14 lines
239 B
Rust
14 lines
239 B
Rust
|
|
//! Tests for authentication module
|
||
|
|
|
||
|
|
#[cfg(test)]
|
||
|
|
mod tests {
|
||
|
|
use super::*;
|
||
|
|
use crate::tests::test_util;
|
||
|
|
|
||
|
|
#[test]
|
||
|
|
fn test_auth_module() {
|
||
|
|
test_util::setup();
|
||
|
|
assert!(true, "Basic auth module test");
|
||
|
|
}
|
||
|
|
}
|