mirror of
https://github.com/inspec/inspec
synced 2024-11-10 23:24:18 +00:00
11 lines
224 B
Ruby
11 lines
224 B
Ruby
# 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
|