Matty Cross

Results 178 comments of Matty Cross

Hi, you mean to test a deadlock of some sort? I'm not sure there's a cleaner way to do this other than wait for the timeout.

In that case I think this might work for you. 🙂 ```swift extension StubFunctionThenTrait { @discardableResult func thenNeverReturn() -> Self { stub.appendAction(.callImplementation({ _ in sleep(9999999); fatalError() })) return self }...

Basically answered in https://github.com/Brightify/Cuckoo/issues/555, I'll see what I can do in improving this.

Thanks for the report! Frankly I never use these so I forgot about ignoring them during crawling.

Thanks for the report! Yup, seems like a bug. These complex types seem impossible to get right. 😄

Thanks for letting me know, I'll see what I can do. 🙂

Okay, the fix is pushed. I decided to remove the previous implementation, it was too fragile anyway. It's now just hardcoded in the templates you provided. @stzouvaras

Hey, I was under the impression that I implemented this during switch to 2.0, but it seems like it slipped my mind. I only implemented template format for filenames. Thanks...

Cuckoo is accepting contributions, but otherwise is in maintenance mode except for some long-term plans I have. Last year it was migration to SwiftSyntax and next up is switching up...

Hi @pouyayarandi, looking through the code I think your proposal might work.