blob: 4e7b3c8aa525485d4f5343cbac8562e568f13f3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
*** Settings ***
Library Process
*** Test Cases ***
Config Test
${result} = Run Process ${RSPAMADM} configtest
Should Match Regexp ${result.stderr} ^$
Should Match Regexp ${result.stdout} ^syntax OK$
Should Be Equal As Integers ${result.rc} 0
Config Help
${result} = Run Process ${RSPAMADM} confighelp
Should Match Regexp ${result.stderr} ^$
Should Be Equal As Integers ${result.rc} 0
|