aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2023-07-07 00:50:25 +0200
committerlonkaars <loek@pipeframe.xyz>2023-07-07 00:50:25 +0200
commit92bc1ed78859984486336d95641ddbdca8d02841 (patch)
treea2c0659815cbf7b5d7f9cc6ab9329ac5ed72461b /test
parentcd01df3747ff361fab819fd1d30fac1dba6240e1 (diff)
small updates
Diffstat (limited to 'test')
-rw-r--r--test/deinflection/cases.ts8
-rw-r--r--test/reading/cases.ts10
2 files changed, 15 insertions, 3 deletions
diff --git a/test/deinflection/cases.ts b/test/deinflection/cases.ts
index 04df2bd..4bff5e3 100644
--- a/test/deinflection/cases.ts
+++ b/test/deinflection/cases.ts
@@ -25,7 +25,11 @@ export default [
{ input: "取らせない", tags: [ Inflection.Negative, Inflection.Causative ], },
{ input: "取らせられる", tags: [ Inflection.Causative, Inflection.Passive ], },
{ input: "取らせられない", tags: [ Inflection.Negative, Inflection.Causative, Inflection.Passive ], },
- { input: "取れ", tags: [ Inflection.Imperative ], },
- { input: "取るな", tags: [ Inflection.Negative, Inflection.Imperative ], },
+ { input: "取れ", tags: [ Inflection.Command ], },
+ { input: "取るな", tags: [ Inflection.Negative, Inflection.Command ], },
+ // TODO: りゃ for いることは
+ // TODO: じゃ for では
+ // TODO: なきゃ + なくちゃ
+ // and more!
] satisfies Test[];
diff --git a/test/reading/cases.ts b/test/reading/cases.ts
index 9fe916f..e6b0787 100644
--- a/test/reading/cases.ts
+++ b/test/reading/cases.ts
@@ -6,6 +6,7 @@ interface Test {
};
export default [
+ // BEGIN BULK IMPORT (ANKI)
{
input: "家の主をなめるなよ…",
reading: "うちのあるじをなめるなよ…",
@@ -9461,5 +9462,12 @@ export default [
reading: "かゆいところはないかな?",
output: "かゆいところはないかな?",
tags: [ "お兄ちゃんはおしまい!" ]
- }
+ },
+ // END BULK IMPORT (ANKI)
+ { // お兄ちゃんはおしまい! episode 09 @ 06:46
+ input: "ええ~ デート?\n違わい!",
+ reading: "ええ~ デート?\nちがわい!",
+ output: "ええ~ デート?\n[違](ちが)わい!",
+ tags: [ "お兄ちゃんはおしまい!" ]
+ },
] satisfies Test[];