Kyle Fuller

Results 243 comments of Kyle Fuller

> It seems current version (2.0.1) of matcher doesn't match uri path partly. That is intentional, it is designed to be the full URI of full path. Try the following:...

Yes, you can add stubs whenever you like. The one limitation is that you need to ensure that the NSURLSessionConfiguration includes MockingjayProtocol when the NSURLSession instance is created. If you...

Thanks for the pull request. I've never had this use case (since usually I deal with JSON etc and would use JSON comparisons instead). Is this common in your app?...

There's a complete example in Mockingjay's own tests. Check out https://github.com/kylef/Mockingjay/blob/master/MockingjayTests/MockingjayTests.swift#L34-54

It appears to be a case of the readme being out of date compared to the implementation. At somepoint we made those computed properties instead of functions. Although, in retrospect...

Apologies for not getting to this sooner. > I could also submit a GitHub Action's workflow? If you want to peruse this then that sounds great to me. At this...

I've popped in 2fcd461 which includes a start, but does not test on many platforms or versions. We don't necessarily need to solve everything in one go and can incrementally...

The underlying system [`glob(3)`](https://manpage.me/index.cgi?q=glob&apropos=0&sektion=3&manpath=Debian+8.1.0&arch=default&format=html) doesn't support any recursive glob so this would have to be implemented entirely in PathKit. You might be better expressing your glob using `recursiveChildren.filter { $0.extension...

The reason that some of these tests had been skipped in the past is because Foundation on Linux wasn't implemented to either behave the same way or to work at...

> I'm not sure if I understand what you mean. You mean that it could be implemented in PathKit itself even though the usually necessary function may not be available?...