summaryrefslogtreecommitdiff
path: root/spec/integration
diff options
context:
space:
mode:
authormo khan <mo.khan@gmail.com>2020-04-14 18:41:16 -0600
committermo khan <mo.khan@gmail.com>2020-04-14 18:41:16 -0600
commit1b2b95d957860dd25060a2175610e01df103c7b2 (patch)
treedd69f78be8e56b7921852022074cdc012f4e545a /spec/integration
parent7ca5e094766b70fe8a8783c0c2f33fdeba46d2c5 (diff)
Build a bootable docker image
Diffstat (limited to 'spec/integration')
-rw-r--r--spec/integration/ruby/bundler_spec.rb16
1 files changed, 8 insertions, 8 deletions
diff --git a/spec/integration/ruby/bundler_spec.rb b/spec/integration/ruby/bundler_spec.rb
index 1f87275..55f3764 100644
--- a/spec/integration/ruby/bundler_spec.rb
+++ b/spec/integration/ruby/bundler_spec.rb
@@ -123,20 +123,20 @@ RSpec.describe 'bundler' do
expect(report).to match_schema(version: '2.0')
expect(report[:licenses]).not_to be_empty
expect(report.find('net-hippie')).to eql({
- name: 'net-hippie',
- description: 'net/http for hippies. ☮️',
- url: 'https://github.com/mokhan/net-hippie/',
- paths: ['.'],
- licenses: ['MIT']
- })
+ name: 'net-hippie',
+ description: 'net/http for hippies. ☮️',
+ url: 'https://github.com/mokhan/net-hippie/',
+ paths: ['.'],
+ licenses: ['MIT']
+ })
end
end
context 'when passing custom options to license finder' do
it 'forwards the options to license finder' do
report = runner.scan(env: {
- 'LICENSE_FINDER_CLI_OPTS' => '--debug --aggregate-paths=. ruby'
- })
+ 'LICENSE_FINDER_CLI_OPTS' => '--debug --aggregate-paths=. ruby'
+ })
expect(report).to match_schema(version: '2.0')
end