1
0
mirror of https://github.com/github/choosealicense.com synced 2024-07-03 17:09:12 +02:00
choosealicense.com/spec/license_fields_spec.rb

16 lines
429 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-03-27 02:19:44 +02:00
2015-08-22 21:25:16 +02:00
require 'spec_helper'
2016-02-08 21:37:19 +01:00
describe 'license fillable fields' do
2016-01-20 16:20:04 +01:00
licenses.each do |license|
2016-02-08 21:37:19 +01:00
context "The #{license['title']} license" do
it 'should only contain supported fillable fields' do
matches = license['content'].scan(/\[([a-z]+)\]/)
2017-03-27 02:19:44 +02:00
extra_fields = matches.flatten - (fields.map { |f| f['name'] })
2016-01-20 16:20:04 +01:00
expect(extra_fields).to be_empty
end
2015-08-22 21:25:16 +02:00
end
end
end