1
0
mirror of https://github.com/github/choosealicense.com synced 2024-12-22 04:40:09 +01:00

Fix linter warning

This commit is contained in:
ObserverOfTime 2020-10-03 12:01:45 +03:00
parent 1ad3d204d5
commit e655e40c30
No known key found for this signature in database
GPG Key ID: 8A2DEA1DBAEBCA9E

View File

@ -2,25 +2,25 @@
require 'spec_helper' require 'spec_helper'
describe 'shown licenses' do # Whitelist of popular licenses that are shown (non-hidden)
# Whitelist of popular licenses that are shown (non-hidden) # Note: most new licenses that are added should be hidden by default
# Note: most new licenses that are added should be hidden by default SHOWN_LICENSES = %w[
SHOWN_LICENSES = %w[ agpl-3.0
agpl-3.0 apache-2.0
apache-2.0 bsd-2-clause
bsd-2-clause bsd-3-clause
bsd-3-clause bsl-1.0
bsl-1.0 cc0-1.0
cc0-1.0 epl-2.0
epl-2.0 gpl-2.0
gpl-2.0 gpl-3.0
gpl-3.0 lgpl-2.1
lgpl-2.1 mit
mit mpl-2.0
mpl-2.0 unlicense
unlicense ].freeze
].freeze
describe 'shown licenses' do
it 'has the expected number of shown licenses' do it 'has the expected number of shown licenses' do
expect(shown_licenses.count).to eql(13) expect(shown_licenses.count).to eql(13)
expect(SHOWN_LICENSES.count).to eql(shown_licenses.count) expect(SHOWN_LICENSES.count).to eql(shown_licenses.count)