mirror of
https://github.com/github/choosealicense.com
synced 2024-11-05 11:18:50 +01:00
14 lines
456 B
Ruby
14 lines
456 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'byte order marks' do
|
|
Dir["#{licenses_path}/*.html"].each do |file|
|
|
context "the #{File.basename(file, '.txt')} license" do
|
|
it 'does not begin with a byte order mark' do
|
|
bom = File.open(file).read.start_with?("\u0000EF\u0000BB\u0000BF")
|
|
msg = 'License file begins with a Byte Order Mark. See http://stackoverflow.com/a/1068700.'
|
|
expect(bom).to eql(false), msg
|
|
end
|
|
end
|
|
end
|
|
end
|