am 47ea762f
: Add a test for armenian period.
* commit '47ea762fb2968377280451585c71a34f31fff619': Add a test for armenian period.
This commit is contained in:
commit
8c27abd29a
1 changed files with 13 additions and 0 deletions
|
@ -109,4 +109,17 @@ public class ShiftModeTests extends InputTestsBase {
|
|||
type("¡");
|
||||
assertTrue("(Spanish) Auto caps after inverted bang", isCapsModeAutoShifted());
|
||||
}
|
||||
|
||||
public void testOtherSentenceSeparators() {
|
||||
changeLanguage("hy-AM");
|
||||
assertTrue("(Armenian) Auto caps at start", isCapsModeAutoShifted());
|
||||
type("Hey. ");
|
||||
assertFalse("(Armenian) No auto-caps after latin period", isCapsModeAutoShifted());
|
||||
type("Hey\u0589");
|
||||
assertFalse("(Armenian) No auto-caps directly after armenian period",
|
||||
isCapsModeAutoShifted());
|
||||
type(" ");
|
||||
assertTrue("(Armenian) Auto-caps after armenian period-whitespace",
|
||||
isCapsModeAutoShifted());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue