inspec/test/integration/default/controls/os_spec.rb

13 lines
159 B
Ruby
Raw Normal View History

family = os[:family]
# use symbol
describe os[:family] do
it { should eq family }
end
# use string
describe os['family'] do
it { should eq family }
end