1
0
Fork 0
forked from wry/wry

it: test dnd focus change on drop

This commit is contained in:
Julian Orth 2024-04-02 16:52:32 +02:00
parent a39031d4f9
commit c6b34550d8
16 changed files with 421 additions and 9 deletions

View file

@ -55,6 +55,7 @@ mod t0021_preferred_buffer_scale;
mod t0022_toplevel_suspended;
mod t0023_xdg_activation;
mod t0024_foreign_toplevel_list;
mod t0025_dnd_focus_change;
pub trait TestCase: Sync {
fn name(&self) -> &'static str;
@ -98,5 +99,6 @@ pub fn tests() -> Vec<&'static dyn TestCase> {
t0022_toplevel_suspended,
t0023_xdg_activation,
t0024_foreign_toplevel_list,
t0025_dnd_focus_change,
}
}