franknarf8

Results 12 comments of franknarf8

@asbjornu Woo-hoo! Got the merge conflict resolved and the test to turn green!

Actually, You can mock `bar`, but only if it the calling scope is within a different file. (using `registerAllowedMethod('bar',[], null)`. It doesn't work when you call the function within the...

I think my explanation might have been a bit confusing, I'll retry to explain with an example: scriptA.groovy ```groovy call(Map args) { print() } void print() { echo('hello') } ```...

@dylanratcliffe I might need some assistance on that one :S I'm not quite sure what this `yumrepo` stuff is about, but I'm pretty sure it has nothing to do with...

Thanks Dylan, Sorry about closing/opening the PR, I accidentally pressed the wrong button. About the use case, I had performance issues, as `onceover` was copying way too many files (e.g....

Mmm, looks like the `deploy_local` code was extracted away, making the `testconfig` properties inaccessible. Should we : 1. pass the `TestConfig` object to `deploy_local` 2. find a new home to...

Hello again @dylanratcliffe , So I have adapted my changes to the latest code restructuring; but the unit tests are still not passing. I'm not quite sure, I have something...

There is a ticket to support LuaRocks in Artifactory : https://www.jfrog.com/jira/browse/RTFACT-19711 But it doesn't seem to have a lot of traction so far... Would it be possible to use a...

Hello @asbjornu , Thanks for the tip! I've just tried playing around with the possible GitVersion.yml configurations; and the following branch description seem to fit the parsing regex from PEP440....

Well, that is exactly the problem I encountered that pushed me to open an issue here. The different pre-release tags are limited to the following `(a|b|c|rc|alpha|beta|pre|preview)`. (As per the regex...