-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Work to improve test framework Correct affix test pathing Fixed clippy errors
- Loading branch information
Showing
12 changed files
with
351 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
==== afx_str ==== | ||
SET UTF-8 | ||
|
||
PFX A Y 1 | ||
PFX A 0 aa . | ||
|
||
SFX B Y 2 | ||
SFX B y bb y | ||
SFX B 0 cc [^y] | ||
|
||
|
||
==== dic_str ===== | ||
3 | ||
xxx/A | ||
yyy/B | ||
zzz/AB | ||
|
||
|
||
==== check_valid ==== | ||
xxx | ||
yyy | ||
zzz | ||
aaxxx | ||
yybb | ||
aazzz | ||
zzzcc | ||
aazzzcc | ||
|
||
|
||
==== check_invalid ==== | ||
not contained |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Example test file | ||
|
||
==== afx_str ==== | ||
# This section contains contents of the .aff file | ||
|
||
==== dic_str ==== | ||
# This section contains contents of the .dic file | ||
|
||
==== check_valid ==== | ||
# Words that should come up as "valid" when checked | ||
|
||
==== check_valid ==== | ||
# These words should appear as valid | ||
|
||
==== check_invalid ==== | ||
# These words should not be valid | ||
|
||
==== wordlist ==== | ||
# The dictionary's internal word list contents | ||
|
||
==== wordlist_nosuggest ==== | ||
# Contents of the never suggested wordlist | ||
|
||
==== wordlist_forbidden ==== | ||
# Contents of the non-accepted wordlist | ||
|
||
==== suggestions ==== | ||
# Something like the following | ||
appl > apple | Apfel | app |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[package] | ||
name = "util" | ||
version = "0.1.0" | ||
edition = "2021" | ||
publish = false | ||
|
||
[dependencies] | ||
zspell = { path = "../" } |
Oops, something went wrong.