2
0
Fork 0
mirror of https://github.com/inspec/inspec synced 2024-12-16 16:22:37 +00:00
inspec/test/integration/default/controls/csv_spec.rb
Miah Johnson 2a1b1d8e88 Remove all leading newlines.
Signed-off-by: Miah Johnson <miah@chia-pet.org>
2019-05-31 11:43:44 -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