On Wed Apr 10 02:11:24 2019, SREZIC wrote:
Show quoted text
This problem is due to YAML::Syck::Dump producing a whitespace character after the "---" start marker and YAML::XS::Dump not producing a whitespace character after the start marker, if there is no further text on that line. My module uses YAML::Any, which passes the request to the "best available" YAML module on the system. On my system that was YAML::XS, and on your system it was YAML::Syck. I've now also looked at modules YAML, YAML::LibYAML, and YAML::Tiny, and they behave like YAML::XS in this respect. I'll fix the problem by using the same Dump to construct the "expected" value, too.