inspec/test/kitchen/policies/default/controls/csv_spec.rb
Miah Johnson e8ae9012ea Move inspec-verify kitchen tests into more obvious directory
Signed-off-by: Miah Johnson <miah@chia-pet.org>
2019-10-16 22:41:03 -07:00

9 lines
205 B
Ruby

if os.unix?
filename = '/tmp/example.csv'
else
filename = 'c:/windows/temp/example.csv'
end
describe csv(filename) do
its('name') { should eq(['addressable', 'ast', 'astrolabe', 'berkshelf']) }
end