summaryrefslogtreecommitdiffstats
path: root/test/functional/cases/200_luacheck.robot
blob: a38fe083e454ed87d3f02254ff982d3953ea4dd2 (plain)
1
2
3
4
5
6
7
8
9
10
*** Settings ***
Library         Process

*** Test Cases ***
Lua Check
  ${result} =  Run Process  luacheck  -q  --no-color  .  cwd=${TOPDIR}
  IF  ${result.rc} != 0
    Log  ${result.stdout}
  END
  Should Be Equal As Integers  ${result.rc}  0  msg=${result.stdout}  values=false