1
0
mirror of https://github.com/github/choosealicense.com synced 2024-11-05 19:28:50 +01:00

Revert "rm no longer relevant test"

This reverts commit 5e7b07f998.
This commit is contained in:
Mike Linksvayer 2018-01-02 14:25:04 -08:00
parent e630ac7f29
commit d7bf3ac98a

View 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