ZIm/crates/gpui/src/platform/test.rs
Rom Grk 2d83580df4
linux: enable test TextSystem (#9037)
Make text tests work on linux.
2024-03-07 15:51:52 -08:00

12 lines
245 B
Rust

mod dispatcher;
mod display;
mod platform;
mod text_system;
mod window;
pub(crate) use dispatcher::*;
pub(crate) use display::*;
pub(crate) use platform::*;
#[cfg(target_os = "windows")]
pub(crate) use text_system::*;
pub(crate) use window::*;