diff options
| author | Jules Aguillon | 2026-04-18 16:18:13 +0200 |
|---|---|---|
| committer | GitHub | 2026-04-18 16:18:13 +0200 |
| commit | c6774196ea57f30026e4aa7f126a6202f0fdd865 (patch) | |
| tree | d5e41a9537d2f430286448043454b436485bcef2 /test | |
| parent | af5f6df02c68a4ba9c06c4c69f49425b8eaabee0 (diff) | |
| download | unexpected-keyboard-c6774196ea57f30026e4aa7f126a6202f0fdd865.tar.gz unexpected-keyboard-c6774196ea57f30026e4aa7f126a6202f0fdd865.zip | |
Add more symbols to superscript and small_caps (#1198)
* Add more symbols to accent_syperscript
* Add all uppercase and lowercase variants to accent_small_caps
* Use ʁ instead of ᴚ in accent_small_caps
Diffstat (limited to 'test')
| -rw-r--r-- | test/juloo.keyboard2/ComposeKeyTest.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/juloo.keyboard2/ComposeKeyTest.java b/test/juloo.keyboard2/ComposeKeyTest.java index a3d1ddb..2aad106 100644 --- a/test/juloo.keyboard2/ComposeKeyTest.java +++ b/test/juloo.keyboard2/ComposeKeyTest.java @@ -48,6 +48,11 @@ public class ComposeKeyTest int state = ComposeKeyData.shift; assertEquals(apply("𝕨", state), KeyValue.makeStringKey("𝕎")); assertEquals(apply("𝕩", state), KeyValue.makeStringKey("𝕏")); + state = ComposeKeyData.accent_small_caps; + assertEquals(apply("œ", state), KeyValue.makeStringKey("ɶ")); + assertEquals(apply("Œ", state), KeyValue.makeStringKey("ɶ")); + assertEquals(apply("ɹ", state), KeyValue.makeStringKey("ʁ")); + assertEquals(apply("ɠ", state), KeyValue.makeStringKey("ʛ")); } KeyValue apply(String seq) |
