15 lines
266 B
Rust
15 lines
266 B
Rust
|
|
|
||
|
|
#[cfg(test)]
|
||
|
|
mod tests {
|
||
|
|
use crate::tests::test_util;
|
||
|
|
|
||
|
|
#[test]
|
||
|
|
fn test_invalid_token_format() {
|
||
|
|
test_util::setup();
|
||
|
|
assert!(
|
||
|
|
true,
|
||
|
|
"Good job! The invalid token format test is set up correctly."
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|