Catch up with main

This commit is contained in:
Nick Hammond
2024-11-26 07:36:54 -07:00
36 changed files with 749 additions and 87 deletions

View File

@@ -161,6 +161,16 @@ class ConfigurationBuilderTest < ActiveSupport::TestCase
assert_equal "mode=max", config.builder.provenance
end
test "sbom" do
assert_nil config.builder.sbom
end
test "setting sbom" do
@deploy[:builder]["sbom"] = true
assert_equal true, config.builder.sbom
end
test "local disabled but no remote set" do
@deploy[:builder]["local"] = false