layout: Register it

This commit is contained in:
Dorota Czaplejewicz
2019-10-02 13:45:55 +00:00
parent 94aec87b5d
commit a31f9b5e04
2 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@ const KEYBOARDS: &[(*const str, *const str)] = &[
("us", include_str!("../data/keyboards/us.yaml")), ("us", include_str!("../data/keyboards/us.yaml")),
("el", include_str!("../data/keyboards/el.yaml")), ("el", include_str!("../data/keyboards/el.yaml")),
("es", include_str!("../data/keyboards/es.yaml")), ("es", include_str!("../data/keyboards/es.yaml")),
("it", include_str!("../data/keyboards/it.yaml")),
("nb", include_str!("../data/keyboards/nb.yaml")), ("nb", include_str!("../data/keyboards/nb.yaml")),
("number", include_str!("../data/keyboards/number.yaml")), ("number", include_str!("../data/keyboards/number.yaml")),
]; ];

View File

@ -47,7 +47,7 @@ endforeach
# The layout test is in the examples directory # The layout test is in the examples directory
# due to the way Cargo builds executables # due to the way Cargo builds executables
# and the need to call it manually # and the need to call it manually
foreach layout : ['us', 'el', 'es', 'nb', 'number'] foreach layout : ['us', 'el', 'es', 'it', 'nb', 'number']
test( test(
'test_layout_' + layout, 'test_layout_' + layout,
cargo_script, cargo_script,