1
0
Fork 0
forked from wry/wry

it: test cursor-shape protocol

This commit is contained in:
Julian Orth 2024-04-02 20:06:13 +02:00
parent 9c8131e145
commit 6448a14fb1
10 changed files with 154 additions and 2 deletions

View file

@ -60,6 +60,7 @@ mod t0026_output_transform;
mod t0027_input_region;
mod t0028_top_level_restacking;
mod t0029_double_click_float;
mod t0030_cursor_shape;
pub trait TestCase: Sync {
fn name(&self) -> &'static str;
@ -108,5 +109,6 @@ pub fn tests() -> Vec<&'static dyn TestCase> {
t0027_input_region,
t0028_top_level_restacking,
t0029_double_click_float,
t0030_cursor_shape,
}
}