2
0
Fork 0
mirror of https://github.com/inspec/inspec synced 2025-02-23 01:18:44 +00:00
inspec/test/integration/default/csv_spec.rb

12 lines
224 B
Ruby
Raw Normal View History

# encoding: utf-8
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