1
0
mirror of https://github.com/github/choosealicense.com synced 2024-07-02 00:19:13 +02:00
choosealicense.com/spec/self_license_spec.rb
2017-12-30 15:38:31 -08:00

12 lines
223 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