Remove STI tests

This commit is contained in:
Parag Nemade 2024-09-11 21:52:06 +05:30
parent 381980479b
commit 29379c82fb
No known key found for this signature in database
GPG Key ID: 71932951EB71E972
4 changed files with 0 additions and 34 deletions

View File

@ -1,4 +0,0 @@
#!/bin/bash
python3 test_suggest_words.py
python3 test_dic_availability.py

View File

@ -1,10 +0,0 @@
#!/usr/bin/python3
import enchant
lang = "as_IN"
try:
dic = enchant.request_dict(lang)
print("Dictionary for {0} language is available for use".format(lang))
except enchant.errors.DictNotFoundError:
print("Dictionary is not installed for use")

View File

@ -1,9 +0,0 @@
#!/usr/bin/python3
import enchant
wdlst = [ "হ্যাল", "ডিনা", "বাঙল", "অসময়"]
dic = enchant.Dict("as_IN")
for wd in wdlst:
dic.check(wd)
print("input word = {0}, Suggestions => {1}".format(wd, dic.suggest(wd)))

View File

@ -1,11 +0,0 @@
- hosts: localhost
roles:
- role: standard-test-basic
required_packages:
- python3-enchant
tags:
- classic
tests:
- sample:
dir: scripts/
run: ./run_tests.sh