We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 838cb6e commit 2fef6edCopy full SHA for 2fef6ed
1 file changed
spec/java_buildpack/component/java_opts_spec.rb
@@ -41,6 +41,12 @@
41
expect(opts).to include('-Dtest-key=test-value')
42
end
43
44
+ it 'adds a bootclasspath property to the collection' do
45
+ opts.add_bootclasspath_p droplet.sandbox + 'test-bootclasspath'
46
+
47
+ expect(opts).to include('-Xbootclasspath/p:$PWD/.java-buildpack/java_opts/test-bootclasspath')
48
+ end
49
50
it 'adds a qualified option to the collection' do
51
opts.add_option 'test-key', droplet.sandbox
52
0 commit comments