mirror of
https://github.com/github/choosealicense.com
synced 2024-11-05 11:18:50 +01:00
12 lines
327 B
Ruby
12 lines
327 B
Ruby
require 'spec_helper'
|
|
|
|
licenses.each do |license|
|
|
describe "The #{license["title"]} license" do
|
|
it "should only contain supported fields" do
|
|
matches = license["content"].scan /\[([a-z]+)\]/
|
|
extra_fields = matches.flatten - fields.map { |f| f["name"] }
|
|
expect(extra_fields).to be_empty
|
|
end
|
|
end
|
|
end
|