mirror of
https://github.com/inspec/inspec
synced 2024-11-27 23:20:33 +00:00
7 lines
254 B
Ruby
7 lines
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
|