mirror of
https://github.com/inspec/inspec
synced 2024-11-23 05:03:07 +00:00
CFINSPEC-93: Extend documentation for introduced matcher
Signed-off-by: Sonu Saha <sonu.saha@progress.com>
This commit is contained in:
parent
f55c3e8190
commit
989d4c5869
1 changed files with 12 additions and 0 deletions
|
@ -129,3 +129,15 @@ The `be_installed` matcher tests if the named service is installed:
|
|||
The `be_running` matcher tests if the named service is running:
|
||||
|
||||
it { should be_running }
|
||||
|
||||
### be_monitored_by
|
||||
|
||||
The `be_monitored_by` matcher accepts name of a monitoring tool as an input and tests if the named service is monitored by the given monitoring tool. The monitoring tools currently supported by this resource are: `monit` and `god`.
|
||||
|
||||
it { should be_monitored_by("god") }
|
||||
|
||||
### have_start_mode
|
||||
|
||||
The `have_start_mode` matcher tests accepts a mode as an input and tests if the named service's start mode is the same as specified in the input. This matcher is currently supported only on Windows system.
|
||||
|
||||
it { should have_start_mode('Manual') }
|
||||
|
|
Loading…
Reference in a new issue