diff --git a/src/resources.rs b/src/resources.rs index bd7d1871..1ace02d3 100644 --- a/src/resources.rs +++ b/src/resources.rs @@ -6,6 +6,7 @@ const KEYBOARDS: &[(*const str, *const str)] = &[ ("us", include_str!("../data/keyboards/us.yaml")), ("nb", include_str!("../data/keyboards/nb.yaml")), + ("number", include_str!("../data/keyboards/number.yaml")), ]; pub fn get_keyboard(needle: &str) -> Option<&'static str> { diff --git a/tests/meson.build b/tests/meson.build index f17e660a..c86c0f63 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -47,7 +47,7 @@ endforeach # The layout test is in the examples directory # due to the way Cargo builds executables # and the need to call it manually -foreach layout : ['us', 'nb'] +foreach layout : ['us', 'nb', 'number'] test( 'test_layout_' + layout, cargo_script,