inspec/test/kitchen/policies/default/controls/xml_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

11 lines
387 B
Ruby

if os.unix?
filename = '/tmp/example.xml'
else
filename = 'c:/windows/temp/example.xml'
end
describe xml(filename) do
its ('/breakfast_menu/food[1]/name') { should eq(['Belgian Waffles']) }
its ('/breakfast_menu/food/name') { should eq(['Belgian Waffles', 'Strawberry Belgian Waffles']) }
its ('/breakfast_menu/food[3]/@name') { should eq(['Blueberry Belgian Waffles']) }
end