mirror of
https://github.com/github/choosealicense.com
synced 2024-11-05 19:28:50 +01:00
12 lines
222 B
Ruby
12 lines
222 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
context 'licensee detects this project' do
|
|
let(:detected) { Licensee.project('.').license }
|
|
|
|
it 'license as MIT' do
|
|
expect(detected.key).to eq('mit')
|
|
end
|
|
end
|