diff options
Diffstat (limited to 'test/functional/cases')
-rw-r--r-- | test/functional/cases/200_luacheck.robot | 8 | ||||
-rw-r--r-- | test/functional/cases/__init__.robot | 2 |
2 files changed, 10 insertions, 0 deletions
diff --git a/test/functional/cases/200_luacheck.robot b/test/functional/cases/200_luacheck.robot new file mode 100644 index 000000000..d2fe18628 --- /dev/null +++ b/test/functional/cases/200_luacheck.robot @@ -0,0 +1,8 @@ +*** Settings *** +Library Process + +*** Test Cases *** +Lua Check + ${result} = Run Process luacheck -q --no-color . cwd=${TOPDIR} + Run Keyword If ${result.rc} != 0 Log ${result.stdout} + Should Be Equal As Integers ${result.rc} 0 msg=${result.stdout} values=false diff --git a/test/functional/cases/__init__.robot b/test/functional/cases/__init__.robot index 3707f507b..98abdc45b 100644 --- a/test/functional/cases/__init__.robot +++ b/test/functional/cases/__init__.robot @@ -6,6 +6,7 @@ Variables ../lib/vars.py *** Keywords *** Export Global Variables ${TESTDIR} = Get Test Directory + ${TOPDIR} = Get Top Dir ${RSPAMADM} = Get Rspamadm ${RSPAMC} = Get Rspamc ${RSPAMD} = Get Rspamd @@ -13,3 +14,4 @@ Export Global Variables Set Global Variable ${RSPAMC} Set Global Variable ${RSPAMD} Set Global Variable ${TESTDIR} + Set Global Variable ${TOPDIR} |