Commit 5cda92b1 authored by James Lopez's avatar James Lopez

Refactor spec to test all extensions

parent 3cd538c2
...@@ -15,9 +15,11 @@ describe Gitlab::FileDetector do ...@@ -15,9 +15,11 @@ describe Gitlab::FileDetector do
describe '.type_of' do describe '.type_of' do
it 'returns the type of a README file' do it 'returns the type of a README file' do
extensions = Gitlab::MarkupHelper::EXTENSIONS + Gitlab::MarkupHelper::EXTENSIONS.map(&:upcase)
%w[README readme INDEX index].each do |filename| %w[README readme INDEX index].each do |filename|
expect(described_class.type_of(filename)).to eq(:readme) expect(described_class.type_of(filename)).to eq(:readme)
%w[.md .adoc .rst].each do |extname| extensions.each do |extname|
expect(described_class.type_of(filename + extname)).to eq(:readme) expect(described_class.type_of(filename + extname)).to eq(:readme)
end end
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