inspec/test/integration/default/controls/ini_spec.rb
Miah Johnson 659b4b373a Remove # encoding: utf8 magic comments
Signed-off-by: Miah Johnson <miah@chia-pet.org>
2019-05-07 16:06:23 -07:00

10 lines
175 B
Ruby

if os.unix?
filename = '/tmp/example.ini'
else
filename = 'c:/windows/temp/example.ini'
end
describe ini(filename) do
its(['client','port']) { should eq('3306') }
end