1
0
Fork 0
forked from wry/wry

tree: switch workspace by scrolling

This commit is contained in:
Julian Orth 2022-05-07 18:27:20 +02:00
parent a310329c42
commit b970965ed9
5 changed files with 82 additions and 2 deletions

View file

@ -41,6 +41,7 @@ mod t0012_subsurface_focus;
mod t0013_graphics_initialized;
mod t0014_container_scroll_focus;
mod t0015_scroll_partial;
mod t0016_scroll_ws;
pub trait TestCase: Sync {
fn name(&self) -> &'static str;
@ -74,5 +75,6 @@ pub fn tests() -> Vec<&'static dyn TestCase> {
t0013_graphics_initialized,
t0014_container_scroll_focus,
t0015_scroll_partial,
t0016_scroll_ws,
}
}