2018-11-02 19:07:56 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
RSpec.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"
|
|
|
|
|
2019-06-01 05:49:40 -04:00
|
|
|
expect(out).to include("bundler: MIT")
|
2018-11-02 19:07:56 -04:00
|
|
|
expect(out).to include("with_license: MIT")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "performs an automatic bundle install" do
|
|
|
|
gemfile <<-G
|
|
|
|
source "file://#{gem_repo1}"
|
|
|
|
gem "rails"
|
|
|
|
gem "with_license"
|
|
|
|
gem "foo"
|
|
|
|
G
|
|
|
|
|
2019-04-14 02:01:35 -04:00
|
|
|
bundle "config set auto_install 1"
|
2018-11-02 19:07:56 -04:00
|
|
|
bundle :licenses
|
|
|
|
expect(out).to include("Installing foo 1.0")
|
|
|
|
end
|
|
|
|
end
|