1
0
mirror of https://github.com/github/choosealicense.com synced 2024-06-29 15:13:04 +02:00
choosealicense.com/spec/license_meta_spec.rb

23 lines
716 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2015-08-22 21:25:16 +02:00
require 'spec_helper'
2016-02-08 21:37:19 +01:00
describe 'license meta' do
2016-01-20 16:20:04 +01:00
licenses.each do |license|
# Manually load the raw license so we don't get the defaults
raw_fields = SafeYAML.load_file("_licenses/#{license['spdx-lcase']}.txt")
2015-08-22 21:25:16 +02:00
2016-02-08 21:37:19 +01:00
context "The #{license['title']} license" do
it 'should only contain supported meta fields' do
extra_fields = raw_fields.keys - meta.map { |m| m['name'] }
2016-01-20 16:20:04 +01:00
expect(extra_fields).to be_empty
end
2015-08-22 21:25:16 +02:00
2016-02-08 21:37:19 +01:00
it 'should contain all required meta fields' do
required = meta.select { |m| m['required'] }.map { |m| m['name'] }
2016-01-20 16:20:04 +01:00
missing = required - raw_fields.keys
2015-08-22 21:25:16 +02:00
expect(missing).to be_empty
end
end
end
end