Commit 55b52640 authored by Rémy Coutable's avatar Rémy Coutable

Merge branch 'feature/recognize-unlicense' into 'master'

Recognize 'UNLICENSE' license files

See merge request gitlab-org/gitlab-ce!21508
parents 4a14ff5b 643c6f31
---
title: Recognize 'UNLICENSE' license files
merge_request: 21508
author: J.D. Bean
type: added
...@@ -8,7 +8,7 @@ module Gitlab ...@@ -8,7 +8,7 @@ module Gitlab
# Project files # Project files
readme: %r{\Areadme[^/]*\z}i, readme: %r{\Areadme[^/]*\z}i,
changelog: %r{\A(changelog|history|changes|news)[^/]*\z}i, changelog: %r{\A(changelog|history|changes|news)[^/]*\z}i,
license: %r{\A(licen[sc]e|copying)(\.[^/]+)?\z}i, license: %r{\A((un)?licen[sc]e|copying)(\.[^/]+)?\z}i,
contributing: %r{\Acontributing[^/]*\z}i, contributing: %r{\Acontributing[^/]*\z}i,
version: 'version', version: 'version',
avatar: /\Alogo\.(png|jpg|gif)\z/, avatar: /\Alogo\.(png|jpg|gif)\z/,
......
...@@ -29,11 +29,15 @@ describe Gitlab::FileDetector do ...@@ -29,11 +29,15 @@ describe Gitlab::FileDetector do
end end
it 'returns the type of a license file' do it 'returns the type of a license file' do
%w(LICENSE LICENCE COPYING).each do |file| %w(LICENSE LICENCE COPYING UNLICENSE UNLICENCE).each do |file|
expect(described_class.type_of(file)).to eq(:license) expect(described_class.type_of(file)).to eq(:license)
end end
end end
it 'returns nil for an UNCOPYING file' do
expect(described_class.type_of('UNCOPYING')).to be_nil
end
it 'returns the type of a version file' do it 'returns the type of a version file' do
expect(described_class.type_of('VERSION')).to eq(:version) expect(described_class.type_of('VERSION')).to eq(:version)
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment