def test_minimal(self, yaml_ast):
     ArtifactDefinition.parse(yaml_ast(
         """
         type: my.type
         file: some/file
         """
     ))
 def test_full(self, yaml_ast):
     ArtifactDefinition.parse(yaml_ast(
         """
         description: My arty desc
         type: my.type
         file: some/file
         repository: repo reference
         deploy_path: another/path
         checksum: abcsdfkjrkfsdjdbhf
         checksum_algorithm: SHA256
         properties:
           prop: val
         """
     ))