diff --git a/src/resources.rs b/src/resources.rs index e7679409..66721579 100644 --- a/src/resources.rs +++ b/src/resources.rs @@ -7,6 +7,7 @@ const KEYBOARDS: &[(*const str, *const str)] = &[ ("us", include_str!("../data/keyboards/us.yaml")), ("el", include_str!("../data/keyboards/el.yaml")), ("es", include_str!("../data/keyboards/es.yaml")), + ("it", include_str!("../data/keyboards/it.yaml")), ("nb", include_str!("../data/keyboards/nb.yaml")), ("number", include_str!("../data/keyboards/number.yaml")), ]; diff --git a/tests/meson.build b/tests/meson.build index a75fc039..a5b4def0 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', 'el', 'es', 'nb', 'number'] +foreach layout : ['us', 'el', 'es', 'it', 'nb', 'number'] test( 'test_layout_' + layout, cargo_script,