From 5df37c2f425624ac2e474939d5a4b61cd025c5f4 Mon Sep 17 00:00:00 2001 From: Pooja Yadav Date: Tue, 24 Aug 2021 17:29:45 +0530 Subject: [PATCH] Resolves: rhbz#1996020 Add CI tests --- tests/tests.yml | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 tests/tests.yml diff --git a/tests/tests.yml b/tests/tests.yml new file mode 100644 index 0000000..5e7b489 --- /dev/null +++ b/tests/tests.yml @@ -0,0 +1,43 @@ +- hosts: localhost + roles: + - role: standard-test-basic + tags: + - classic + tests: + - test_lsmod_h: + dir: . + run: enchant-lsmod-2 -h >/dev/null + - test_lsmod_v: + dir: . + run: enchant-lsmod-2 -v >/dev/null + - test_list_dicts_aa_BB: + dir: . + run: test "`enchant-lsmod-2 -list-dicts | grep aa_BB`" = "" + - test_list_dicts_cs_CZ: + dir: . + run: test "`enchant-lsmod-2 -list-dicts | grep cs_CZ`" != "" + - test_enchant_h: + dir: . + run: enchant-2 -h >/dev/null + - test_enchant_v: + dir: . + run: enchant-2 -v >/dev/null + - test_enchant_d_CCC: + dir: . + run: test "`echo cezta | enchant-2 -d cs_CZ -a | grep -c CCC`" = "0" + - test_enchant_d_cesta: + dir: . + run: echo "cezta" | enchant-2 -d cs_CZ -a | grep cesta >/dev/null + - test_cezta_pen_pes_cezta: + dir: . + run: echo "cezta pen pes" | enchant-2 -d cs_CZ -l | grep cezta >/dev/null + - test_cezta_pen_pes_pen: + dir: . + run: echo "cezta pen pes" | enchant-2 -d cs_CZ -l | grep pen >/dev/null + - test_cezta_pen_pes_pes: + dir: . + run: test "`echo cezta pen pes | enchant-2 -d cs_CZ -l | grep -c pen`" = "1" + required_packages: + - enchant2 + - hunspell-cs +