我正在使用 chef inspec 在下面的 json 文件中验证注释是否等于 Test。
"imdata": [
{
"aaaPwdStrengthProfile": {
"attributes": {
"annotation": "Test",
}
}
}
]
尝试使用以下脚本但出现错误
describe json('C:/output.json') do
its(['imdata','aaaPwdStrengthProfile','attributes','annotation']) { should eq 'Test' }
end