inspec/test/fixtures/profiles/wrong-char-profile/controls/control.rb
Ryan Davis db8e6e7415 Moved test/unit/mock/* to test/fixtures
Signed-off-by: Ryan Davis <zenspider@chef.io>
2019-11-08 16:29:03 -08:00

7 lines
No EOL
254 B
Ruby

control 'char' do
title "ensure we have the right characterset"
desc "Ensure we do not freak out with “"
describe inspec.profile.file('ascii').force_encoding(Encoding::ISO_8859_1) do
it { should_not match(/conceptually/) }
end
end