Description
A bit of a chicken and egg problem with the perl tests here - they rely on the current published version of the CCK, whose messages don't include the new field, which is causing the failure. Any thoughts on how to address this @ehuelsmann?
@davidjgoss looking at the test I think we can change them a little so. So instead of comparing the round trip
ndjson --> object --> ndjson
and comparing the result we can doobject --> ndjson --> object
and compare that result. That way we don't need the CCK at all and the code will change along with that specific message object.Though I think it would be even better to include a
testdata
folder with (for now) a single message that all implementations try to round trip. That way we won't have to update N implementations manually.Originally posted by @mpkorstanje in #102 (comment)