Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Pahawh Hmong numeral system
### Changed
- `README.md` updated
- Test system modified
## [1.3] - 2026-01-28
### Added
- English full stop mode
Expand Down
4 changes: 4 additions & 0 deletions tests/test_conversion.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,10 @@
NumeralSystem.PAHAWH_HMONG: "𖭐𖭑𖭒𖭓𖭔𖭕𖭖𖭗𖭘𖭙",
}

def test_numeral_system_length():
for digits in xnum.params.NUMERAL_MAPS.values():
assert len(digits) == 10


def test_numeral_system_digits():
for system, digits in CONVERSION_CASES.items():
Expand Down