Skip to content

Commit

Permalink
test: add tests for narrow above vowel chars
Browse files Browse the repository at this point in the history
  • Loading branch information
bhajneet committed Nov 16, 2024
1 parent 3bb7e0d commit 29a2882
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions scripts/tests/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,18 @@ def dec2uni(decimal):
return f"{format(ord(chr(decimal)), '04x')}"


items = [
{"item": "ਙੰਙੇ ਘੰਙੇ", "description": "ਙੇ (6)"},
{"item": "ਙੰਙੈ ਘੰਙੈ ਰੰਙੈ ਅੰਙੈ", "description": "ਙੈ (12)"},
{"item": "ਆਪਣੇ ਸੋਹਣੇ ਗਹਿਣੇ ਨਿਮਾਣੇ ਡਰਾਉਣੇ ਲੈਣੇ ਛੈਣੇ ਛੈਂਣੇ ਹੀਣੇ ਜਾਂਣੇ", "description": "ਣੇ (28.8k)"},
{"item": "ਜਾਣੈ ਭਾਣੈ ਪਛਾਣੈ ਵਖਾਣੈ ਆਣੈ ਪਤੀਣੈ ਆਪੀਣੈ ਜਿਣੈ ਦੇਣੈ ਲੈਣੈ ਨਾਰਾਇਣੈ ਪਉਣੈ", "description": "ਣੈ (1.8k)"},
{"item": "ਝੂਠੇ ਬੈਠੇ ਇਕੱਠੇ ਅੱਠੇ ਮਿੱਠੇ ਉਠੇ ਮੀਠੇ ਕੋਠੇ ਕੱਠੇ ਕੰਠੇ ਪੁੱਠੇ ਉੱਠੇ ਠੇਂਗਾ ਡਿੱਠੇ", "description": "ਠੇ (2.5k)"},
{"item": "ਉਠੈ ਡਿਠੈ ਮਜੀਠੈ ਕੈਠੈ ਉਠੈਂ ਬੈਕੁੰਠੈ ਉੱਠੈ ਮੁੱਠੈ ਐਂਠੈ", "description": "ਠੈ (੩੭੨)"},
{"item": "ਨੇ ਅਪਨੇ ਕਰਨੇ ਅਨੇਕਾਂ ਅਨੇਕ ਨੇੜੇ ਖ਼ਜ਼ਾਨੇ ਤੈਨੇ ਜਿਤਨੇ ਕਿਤਨੇ ਮੈਨੇ ਮੈਂਨੇ ਹਨੇਰਾ ਨੇਤ੍ਰ ਮਹੀਨੇ ਨੇਤ੍ਰੋਂ ਹੋਨੇ ਮੰਨੇ ਤਿੰਨੇ ਜਿੰਨੇ ਤੈਂਨੇ ਓਨੇ ਉਨੇ ਉੱਨੇ", "description": "ਨੇ (67.9k)"},
{"item": "ਨੈਨ ਜਾਨੈ ਮਾਨੈ ਚੀਨੈ ਮੰਨੈ ਨੈਣੰ ਇਨੈ ਪੰਨੈ ਨੈਂ ਨੈਨੋਂ ਨੈਨੌ ਉਨੈ", "description": "ਨੈ (3.7k)"},
]
add_proof_sheet_test("unsorted", "Unsorted", items)

# ASCII
items = []
for number in range(0, 128):
Expand Down

0 comments on commit 29a2882

Please sign in to comment.