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

remove OSI appoval requirement

This commit is contained in:
Ben Balter 2015-08-19 17:30:11 -04:00
parent fdbaf19d51
commit 4b536ab417

View File

@ -21,14 +21,6 @@ licenses.each do |license|
spdx = find_spdx(license["id"])
expect(spdx[1]["name"].gsub(/ only$/,"")).to eql(license["title"])
end
# CC0 and Unlicense are not OSI approved, but that's okay
unless license["id"] == "unlicense" || license["id"] == "cc0-1.0"
it "should be OSI approved" do
spdx = find_spdx(license["id"])
expect(spdx[1]["osiApproved"]).to eql(true)
end
end
end
end