let(:expected){'Το σύστημα γραφής είναι ένα συμβολικό, οπτικό σύστημα καταγραφής της γλώσσας.'}
it"correctly encodes UTF-8 as UTF-8"do
expect(to_utf8('utf-8.txt')).toeq(expected)
end
it"correctly encodes UTF-8 with BOM as UTF-8"do
expect(to_utf8('utf-8-bom.txt')).toeq(expected)
end
it"correctly encodes UTF-16LE with BOM as UTF-8"do
expect(to_utf8('utf-16le.txt')).toeq(expected)
end
it"correctly encodes UTF-16BE with BOM as UTF-8"do
expect(to_utf8('utf-16be.txt')).toeq(expected)
end
end
it"correctly encodes ISO-8859-5 as UTF-8"do
expect(to_utf8('iso-8859-5.txt')).toeq('Письменность отличается от других существующих или возможных систем символической коммуникации тем, что всегда ассоциируется с некоторым языком и устной речью на этом языке')