19 lines
382 B
Ruby
19 lines
382 B
Ruby
|
require "spec_helper"
|
||
|
|
||
|
describe "bundle licenses" do
|
||
|
before :each do
|
||
|
install_gemfile <<-G
|
||
|
source "file://#{gem_repo1}"
|
||
|
gem "rails"
|
||
|
gem "with_license"
|
||
|
G
|
||
|
end
|
||
|
|
||
|
it "prints license information for all gems in the bundle" do
|
||
|
bundle "licenses"
|
||
|
|
||
|
expect(out).to include("actionpack: Unknown")
|
||
|
expect(out).to include("with_license: MIT")
|
||
|
end
|
||
|
end
|