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
test-helper.el isn't a library intended to be loaded with require. Instead it is loaded with load by ert-runner itself and that does not use require to do so.
Because of that, it is confusing to provide a feature. It also wouldn't be possible to use require to reliably load test-helper because that might, depending on the order of load-path, load the test-helper.el of another package.
There aren't many packages left that have that defect but that's only because I got them to fix this issue. It would be great if you could fix it in your package as well.
test-helper.el
isn't a library intended to be loaded withrequire
. Instead it is loaded withload
byert-runner
itself and that does not userequire
to do so.Because of that, it is confusing to
provide
a feature. It also wouldn't be possible to userequire
to reliably loadtest-helper
because that might, depending on the order ofload-path
, load thetest-helper.el
of another package.There aren't many packages left that have that defect but that's only because I got them to fix this issue. It would be great if you could fix it in your package as well.
This is also discussed at rejeep/ert-runner.el#38.
The text was updated successfully, but these errors were encountered: