def test_metadata_validation(self):
     # Validation not currently implemented
     with pytest.raises(NotImplementedError):
         metadata = Metadata(
             name="foo",
             version="1.0",
             keywords=["a", "b", "c"],
             description="Hello\nworld",
         )
         metadata.validate()