Felipe Gasper
Felipe Gasper
It would be really handy to be able to get a list of a Test::Class subclass’s test methods—i.e., what test methods will run when you runtests(). How hard would this...
This PR makes several significant changes: - **BREAKING API CHANGE:** The library now exports a promise whose resolution contains the `json` and `raw` functions. It’s no longer possible to “shoot...
Two changes have happened: - `MODULARIZE_INSTANCE` is removed. - The default output format is now a linked executable, not an object file.
It would simplify our integration with PowerDNS if the HTTP API were available via a unix/local socket rather than TCP. TCP entails firewall configuration and additional overhead, whereas a unix/local...
**Description** Earlier today I discovered that XSUB.h overwrites functions like htons. With Leon’s help I learned that it has to do with the implicit-sys logic, which itself depends on NO_XSLOCKS...
## Description If a test gets skipped in SetupTest() in a suite that implements WithStats, the suite will panic on shutdown. ## Step To Reproduce ``` package main import (...
## Summary This fixes issue #1722. ## Changes Prevent stats.end() if stats.start() never ran. ## Motivation Allow skipping a test in a setup/before hook. See issue #1722 for an example....
This allows code like the following: ``` foo := []int{1, 2, 3} lo.Push(&foo, 4) ``` … which is a bit more concise than Go’s familiar `foo = append(foo, 4)` idiom....
It would work thus: ``` So(someError, ShouldWrapError, context.Canceled) ``` … and will internally check if `errors.Is(someError, context.Canceled)`. Basically like testify’s ErrorIs(). Thanks!