Merge pull request #2663 from eikek/fix/2629-collect-output-default

Honor default value `true` for `collectOutput`
This commit is contained in:
mergify[bot]
2024-05-28 19:15:27 +00:00
committed by GitHub
2 changed files with 11 additions and 2 deletions

View File

@ -35,4 +35,13 @@ class AddonMetaTest extends CatsEffectSuite with TestLoggingConfig with Fixtures
_ = assertEquals(meta, dummyAddonMeta)
} yield ()
}
test("parse yaml with defaults") {
val yamlStr = """meta:
| name: "test"
| version: "0.1.0"
|""".stripMargin
val meta = AddonMeta.fromYamlString(yamlStr).fold(throw _, identity)
assert(meta.parseResult)
}
}