-
### Welcome
- [X] Yes, I'm using a binary release within 2 latest [releases](https://github.com/golangci/golangci-lint/releases). Only such installations are supported.
- [X] Yes, I've searched simil…
sxd updated
2 minutes ago
-
**Description**
Goal is to establish required testing capabilities for KIM and its related components.
In scope is:
* Unit-testing for KIM and extenders
* Integration tests of KIM using ENV-tests to…
-
Probably I'm missing something obvious from the docs but say I have two slices of structs that I want to compare but only on one field.
I want to write something like:
```go
Expect(actual).To(H…
-
I´ve just found the following log message
![Picture 1](https://github.com/f5devcentral/f5-bd-cis-demo/assets/16683733/2ffee9f5-76f0-4ff0-b054-19e7bc885508)
The errors seem to come from a library…
-
https://github.com/mikiya771/tetris-CLI/blob/42db481df03ae01b3bcb7d9d71bfe276c78d2452/reducer/reducer.go#L23
先にテストを書き進めてから,storeを引数にできる形まであげていく
reducerはfunc(action ActionType, prevStore Store) nex…
-
Expect(err).ShouldNot(HaveOccurred())
or
Expect(err).ToNot(HaveOccurred())
Only give you the Expect stackTrace or the stackTrace of the DSL. We are looking for the stackTrace of the error
Exam…
-
I find myself writing
```go
Expect(errors.Is(err, &targetErr{})).To(BeTrue())
```
and
```go
var target *targetErr
Expect(errors.As(err, &target)).To(BeTrue())
```
quite a lot. The output is n…
-
This package looks awesome, but i would have expected these tests to fail:
```golang
package frontpage_test
import (
"context"
"testing"
"github.com/go-redis/redismock/v8"
. "github.…
-
My understanding is that the [goruotines](https://github.com/onsi/gomega/blob/061fd26d2fdf897e9db1797f9149accc9790d47e/gmeasure/experiment.go#L468-L472) will still be waiting on `range work` even afte…
-
# Summary
I built a library - a very basic version of what https://github.com/cucumber/aruba does for ruby - which is used with `go test`.
# Details
Using the standard library I have `testi…