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