1
0
mirror of https://github.com/github/choosealicense.com synced 2024-06-29 23:23:02 +02:00

rm no longer relevant test

This commit is contained in:
Mike Linksvayer 2017-10-25 09:34:49 -07:00
parent 71aace0808
commit 5e7b07f998

View File

@ -1,15 +0,0 @@
# 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