chore: Improve the tests
Signed-off-by: Awiteb <a@4rs.nl>
This commit is contained in:
parent
e6121b3f52
commit
91b5680b22
1 changed files with 1 additions and 7 deletions
|
@ -188,11 +188,11 @@ where
|
|||
}
|
||||
|
||||
#[cfg(test)]
|
||||
#[cfg(feature = "cacache-storage")]
|
||||
mod tests {
|
||||
use super::*;
|
||||
|
||||
#[tokio::test]
|
||||
#[cfg(feature = "cacache-storage")]
|
||||
async fn cacache_store_captcha() {
|
||||
let storage = CacacheStorage::new(
|
||||
tempfile::tempdir()
|
||||
|
@ -215,7 +215,6 @@ mod tests {
|
|||
}
|
||||
|
||||
#[tokio::test]
|
||||
#[cfg(feature = "cacache-storage")]
|
||||
async fn cacache_clear_expired() {
|
||||
let storage = CacacheStorage::new(
|
||||
tempfile::tempdir()
|
||||
|
@ -240,7 +239,6 @@ mod tests {
|
|||
}
|
||||
|
||||
#[tokio::test]
|
||||
#[cfg(feature = "cacache-storage")]
|
||||
async fn cacache_clear_by_token() {
|
||||
let storage = CacacheStorage::new(
|
||||
tempfile::tempdir()
|
||||
|
@ -265,7 +263,6 @@ mod tests {
|
|||
}
|
||||
|
||||
#[tokio::test]
|
||||
#[cfg(feature = "cacache-storage")]
|
||||
async fn cacache_is_token_exist() {
|
||||
let storage = CacacheStorage::new(
|
||||
tempfile::tempdir()
|
||||
|
@ -291,7 +288,6 @@ mod tests {
|
|||
}
|
||||
|
||||
#[tokio::test]
|
||||
#[cfg(feature = "cacache-storage")]
|
||||
async fn cacache_get_answer() {
|
||||
let storage = CacacheStorage::new(
|
||||
tempfile::tempdir()
|
||||
|
@ -319,7 +315,6 @@ mod tests {
|
|||
}
|
||||
|
||||
#[tokio::test]
|
||||
#[cfg(feature = "cacache-storage")]
|
||||
async fn cacache_cache_dir() {
|
||||
let cache_dir = tempfile::tempdir()
|
||||
.expect("failed to create temp file")
|
||||
|
@ -330,7 +325,6 @@ mod tests {
|
|||
}
|
||||
|
||||
#[tokio::test]
|
||||
#[cfg(feature = "cacache-storage")]
|
||||
async fn cacache_clear_expired_with_expired_after() {
|
||||
let storage = CacacheStorage::new(
|
||||
tempfile::tempdir()
|
||||
|
|
Loading…
Reference in a new issue