Add logger to test state
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Valentin Brandl 2020-10-30 13:20:24 +01:00
parent 19d37806f2
commit c2d496f2b4

View File

@ -23,7 +23,11 @@ macro_rules! test_service {
let cache_dir = dbg!(tempdir().unwrap());
let repos = format!("{}/", repo_dir.path().display());
let cache = format!("{}/", cache_dir.path().display());
let state = dbg!(State { repos, cache });
let state = dbg!(State {
repos,
cache,
logger: crate::config::init(),
});
let mut app = test_app!(state, web::resource($path).to($what::<T>));