Hello and thanks for JBehave, a wonderful library!
I am trying to override metaFilter() in my own Embedder, but the 3.7.3
code looks like this, from Embedder.java, rows 422-424:
public MetaFilter metaFilter() {
return new MetaFilter(StringUtils.join(metaFilters, " "),
embedderMonitor);
}
Shouldn't it be
return new MetaFilter(StringUtils.join(metaFilters(), " "),
embedderMonitor());
instead? It would be far easier to extend...I would be overjoyed if this
found its way into 3.7.4!
Oh, and btw: I've written my own hack for Google Drive which uses the
newer Google APIs, including OAuth2 and google-api-services-drive instead
of the old, deprecated stuff that you guys have. I can share it on Github
if you're interested (and my employer thinks it's a good idea, which I am
so certain of that I assume it).
Thanks,
Ola