You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we do not support .yaml extension and we need to fix it before the public release.
com.github.vkorobkov.jfixtures.config.ConfigLoader
Should lookup for .conf.yaml first, in case of failure should lookup fpr .conf.yml
com.github.vkorobkov.jfixtures.loader.FixturesLoader#isYml should be fixed:
.endsWith(".yml") || .endsWith(".yaml")
There is an edge case here: if the same fixture exists with both extensions(like users.yaml and users.yml we need to throw an exception with a readable message)
The text was updated successfully, but these errors were encountered:
YML files have two valid possible extensions:
.yml
and.yaml
Currently we do not support
.yaml
extension and we need to fix it before the public release.com.github.vkorobkov.jfixtures.config.ConfigLoader
Should lookup for
.conf.yaml
first, in case of failure should lookup fpr.conf.yml
com.github.vkorobkov.jfixtures.loader.FixturesLoader#isYml
should be fixed:There is an edge case here: if the same fixture exists with both extensions(like
users.yaml
andusers.yml
we need to throw an exception with a readable message)The text was updated successfully, but these errors were encountered: