mirror of
https://github.com/inspec/inspec
synced 2024-11-27 15:10:44 +00:00
14 lines
177 B
Ruby
14 lines
177 B
Ruby
|
# encoding: utf-8
|
||
|
|
||
|
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
|