1
0
Fork 0
forked from wry/wry

tree: remove hidden, unused workspaces

This commit is contained in:
Julian Orth 2022-05-17 17:47:01 +02:00
parent 871827fdde
commit 70cc24107b
4 changed files with 45 additions and 0 deletions

View file

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