Correct filesystem resource docs for windows example

Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
This commit is contained in:
Clinton Wolfe 2019-11-13 11:28:15 -05:00
parent c8fb6c9d6f
commit 64676b2482

View file

@ -67,7 +67,9 @@ The following examples show how to use this Chef InSpec audit resource.
### Test if the C:\ partition is NTFS
describe filesystem('c:\') do
Note that Windows filesystems (drives) are referred to without any slashes:
describe filesystem('c:') do
its('type') { should cmp 'NTFS' }
end