1
0
Fork 0
forked from wry/wry

it: test toplevel drag

This commit is contained in:
Julian Orth 2024-04-03 16:52:31 +02:00
parent d4f49bf947
commit 660fa92659
11 changed files with 182 additions and 4 deletions

View file

@ -68,6 +68,7 @@ mod t0033_float_size_memoization;
mod t0034_workspace_restoration;
mod t0035_scanout_feedback;
mod t0036_idle;
mod t0037_toplevel_drag;
pub trait TestCase: Sync {
fn name(&self) -> &'static str;
@ -123,5 +124,6 @@ pub fn tests() -> Vec<&'static dyn TestCase> {
t0034_workspace_restoration,
t0035_scanout_feedback,
t0036_idle,
t0037_toplevel_drag,
}
}