
From: Paulo Vital <pvital@linux.vnet.ibm.com> V1 -> V2: - Rebase with new plugins structure. - Changed headers V1: Patch-set with Wok tests, provided from old Kimchi tests, and modification of one error message to Wok format. Paulo Vital (2): Wok tests Move KCHASYNC0003E to Wok and update code. Makefile.am | 4 +- configure.ac | 1 + plugins/kimchi/tests/test_exception.py | 123 ------------ plugins/kimchi/tests/test_objectstore.py | 97 --------- plugins/kimchi/tests/test_plugin.py | 126 ------------ plugins/kimchi/tests/test_rollbackcontext.py | 99 --------- plugins/kimchi/tests/test_server.py | 289 --------------------------- plugins/kimchi/tests/test_utils.py | 69 ------- src/wok/i18n.py | 2 + src/wok/model/tasks.py | 2 +- src/wok/plugins/kimchi/i18n.py | 2 - tests/Makefile.am | 50 +++++ tests/run_tests.sh.in | 55 +++++ tests/test_config.py.in | 132 ++++++++++++ tests/test_exception.py | 132 ++++++++++++ tests/test_objectstore.py | 99 +++++++++ tests/test_plugin.py | 122 +++++++++++ tests/test_rollbackcontext.py | 101 ++++++++++ tests/test_server.py | 284 ++++++++++++++++++++++++++ tests/test_utils.py | 71 +++++++ tests/utils.py | 261 ++++++++++++++++++++++++ 21 files changed, 1313 insertions(+), 808 deletions(-) delete mode 100644 plugins/kimchi/tests/test_exception.py delete mode 100644 plugins/kimchi/tests/test_objectstore.py delete mode 100644 plugins/kimchi/tests/test_plugin.py delete mode 100644 plugins/kimchi/tests/test_rollbackcontext.py delete mode 100644 plugins/kimchi/tests/test_server.py delete mode 100644 plugins/kimchi/tests/test_utils.py create mode 100644 tests/Makefile.am create mode 100644 tests/run_tests.sh.in create mode 100644 tests/test_config.py.in create mode 100644 tests/test_exception.py create mode 100644 tests/test_objectstore.py create mode 100644 tests/test_plugin.py create mode 100644 tests/test_rollbackcontext.py create mode 100644 tests/test_server.py create mode 100644 tests/test_utils.py create mode 100644 tests/utils.py -- 2.4.3