We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$ cat /tmp/Test-Database-merijn/CSV/mapping.yml --- dbi:CSV:: /pro/3gl/CPAN/DBI-Test-git/sandbox/tim: tdd_csv_merijn_0 $
PASSs with YAML, YAML::XS, and YAML::Syck, but FAILs with YAML::Tiny
YAML::Tiny failed to classify line 'dbi:CSV::' at …
failed to classify line 'dbi:CSV::' at …
If I dig, I come to the conclusion that this line is too restrictive:
my $re_capture_unquoted_key = qr/([^:]+(?::+\S[^:]*)*)(?=\s*\:(?:\s+|$))/;
if I change that to
my $re_capture_unquoted_key = qr/([^:]+(?::+\S(?:[^:]*|.*?(?=:)))*)(?=\s*\:(?:\s+|$))/;
YAML::Tiny also passes and its test suite also still passes, but I am by far a YAML expert and leave that conclusion to the experts
The text was updated successfully, but these errors were encountered:
No branches or pull requests
PASSs with YAML, YAML::XS, and YAML::Syck, but FAILs with YAML::Tiny
YAML::Tiny
failed to classify line 'dbi:CSV::' at …
If I dig, I come to the conclusion that this line is too restrictive:
if I change that to
YAML::Tiny also passes and its test suite also still passes, but I am by far a YAML expert and leave that conclusion to the experts
The text was updated successfully, but these errors were encountered: