failing test for excluding COPYRIGHT files

This commit is contained in:
Ben Balter 2017-11-03 10:39:32 -04:00
parent 5d2685d1a5
commit 45eaeacd68
No known key found for this signature in database
GPG Key ID: DBB67C246AD356C4
1 changed files with 8 additions and 0 deletions

View File

@ -240,5 +240,13 @@
expect(subject.license_files.last.filename).to eql('LICENSE')
end
end
context 'with a copyright file' do
let(:fixture) { 'mit-with-copyright' }
it 'returns MIT' do
expect(subject.license).to eql(mit)
end
end
end
end