mirror of
https://github.com/github/choosealicense.com
synced 2024-12-22 21:00:10 +01:00
25 lines
501 B
Ruby
25 lines
501 B
Ruby
|
require 'spec_helper'
|
||
|
|
||
|
licenses.each do |license|
|
||
|
|
||
|
groups = rules.keys
|
||
|
|
||
|
describe "The #{license["title"]} license" do
|
||
|
groups.each do |group|
|
||
|
|
||
|
valid_tags = rules[group].map { |r| r["tag"] }
|
||
|
|
||
|
describe "the #{group} group" do
|
||
|
it "should exist" do
|
||
|
expect(license[group]).to_not be_nil
|
||
|
end
|
||
|
|
||
|
it "should only contain valid tags" do
|
||
|
extra = license[group] - valid_tags
|
||
|
expect(extra).to be_empty
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|