mirror of
https://github.com/github/choosealicense.com
synced 2024-11-06 03:38:49 +01:00
parent
e630ac7f29
commit
d7bf3ac98a
15
spec/license_fields_spec.rb
Normal file
15
spec/license_fields_spec.rb
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
require 'spec_helper'
|
||||||
|
|
||||||
|
describe 'license fillable fields' do
|
||||||
|
licenses.each do |license|
|
||||||
|
context "The #{license['title']} license" do
|
||||||
|
it 'should only contain supported fillable fields' do
|
||||||
|
matches = license['content'][0, 1000].scan(/\[([a-z]+)\]/)
|
||||||
|
extra_fields = matches.flatten - (fields.map { |f| f['name'] })
|
||||||
|
expect(extra_fields).to be_empty
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in New Issue
Block a user