1
0
mirror of https://github.com/github/choosealicense.com synced 2024-07-02 00:19:13 +02:00
choosealicense.com/spec/license_fields_spec.rb
Mike Linksvayer d7bf3ac98a Revert "rm no longer relevant test"
This reverts commit 5e7b07f998.
2018-01-02 14:25:04 -08:00

16 lines
438 B
Ruby

# 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