A lightweight test helper package
0

Configure Feed

Select the types of activity you want to include in your feed.

Migrate this project to the vanity URL (#73)

authored by

Tom Fleet and committed by
GitHub
(Jun 19, 2025, 6:24 PM +0100) 91d1e9bf 2ddb258d

+18 -20
+2 -2
README.md
··· 1 1 # test 2 2 3 3 [![License](https://img.shields.io/github/license/FollowTheProcess/test)](https://github.com/FollowTheProcess/test) 4 - [![Go Reference](https://pkg.go.dev/badge/github.com/FollowTheProcess/test.svg)](https://pkg.go.dev/github.com/FollowTheProcess/test) 4 + [![Go Reference](https://pkg.go.dev/badge/go.followtheprocess.codes/test.svg)](https://pkg.go.dev/go.followtheprocess.codes/test) 5 5 [![Go Report Card](https://goreportcard.com/badge/github.com/FollowTheProcess/test)](https://goreportcard.com/report/github.com/FollowTheProcess/test) 6 6 [![GitHub](https://img.shields.io/github/v/release/FollowTheProcess/test?logo=github&sort=semver)](https://github.com/FollowTheProcess/test) 7 7 [![CI](https://github.com/FollowTheProcess/test/workflows/CI/badge.svg)](https://github.com/FollowTheProcess/test/actions?query=workflow%3ACI) ··· 19 19 ## Installation 20 20 21 21 ```shell 22 - go get github.com/FollowTheProcess/test@latest 22 + go get go.followtheprocess.codes/test@latest 23 23 ``` 24 24 25 25 ## Usage
+4 -4
go.mod
··· 1 - module github.com/FollowTheProcess/test 1 + module go.followtheprocess.codes/test 2 2 3 3 go 1.24 4 4 5 5 require ( 6 - github.com/FollowTheProcess/hue v0.5.2 7 - github.com/FollowTheProcess/snapshot v0.5.0 6 + go.followtheprocess.codes/hue v0.6.0 7 + go.followtheprocess.codes/snapshot v0.6.0 8 8 golang.org/x/tools v0.34.0 9 9 ) 10 10 11 11 require ( 12 12 golang.org/x/sys v0.33.0 // indirect 13 - golang.org/x/term v0.30.0 // indirect 13 + golang.org/x/term v0.32.0 // indirect 14 14 )
+6 -8
go.sum
··· 1 - github.com/FollowTheProcess/hue v0.5.2 h1:Ns/vO8wiwv2oXDn+QyBLcYCK0LcfXVVu31bHGTLAFHI= 2 - github.com/FollowTheProcess/hue v0.5.2/go.mod h1:5FD2UrxTzWi0Uc63w8ndsjqPrH4xn3Q7k7vEpINqEP4= 3 - github.com/FollowTheProcess/snapshot v0.5.0 h1:TnMch6ApwgwqHRmqVfiD3ox7nbqzXByTmR1m1DUoB9E= 4 - github.com/FollowTheProcess/snapshot v0.5.0/go.mod h1:S/AJ87ieaXEocDmegQ02y5EhT3E9p2IU4r4Vn/qNi20= 1 + go.followtheprocess.codes/hue v0.6.0 h1:JDLnRrkauCCIyYRqKNBDM+X6X5o75j2CG3iddnzIuhc= 2 + go.followtheprocess.codes/hue v0.6.0/go.mod h1:tNCWKaywHqkFo20hYOVwG7CaoRajJeE2AueP5HStY7U= 3 + go.followtheprocess.codes/snapshot v0.6.0 h1:aq7WIc8hInqdpdrOzntk9lqHwxUqSw3YbgLYaoy0laQ= 4 + go.followtheprocess.codes/snapshot v0.6.0/go.mod h1:0hskrLbmTgcv3h1YgVgX0CXiiOKq0UvhM4PewnOZOno= 5 5 golang.org/x/sys v0.33.0 h1:q3i8TbbEz+JRD9ywIRlyRAQbM0qF7hu24q3teo2hbuw= 6 6 golang.org/x/sys v0.33.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k= 7 - golang.org/x/term v0.30.0 h1:PQ39fJZ+mfadBm0y5WlL4vlM7Sx1Hgf13sMIY2+QS9Y= 8 - golang.org/x/term v0.30.0/go.mod h1:NYYFdzHoI5wRh/h5tDMdMqCqPJZEuNqVR5xJLd/n67g= 9 - golang.org/x/tools v0.33.0 h1:4qz2S3zmRxbGIhDIAgjxvFutSvH5EfnsYrRBj0UI0bc= 10 - golang.org/x/tools v0.33.0/go.mod h1:CIJMaWEY88juyUfo7UbgPqbC8rU2OqfAV1h2Qp0oMYI= 7 + golang.org/x/term v0.32.0 h1:DR4lr0TjUs3epypdhTOkMmuF5CDFJ/8pOnbzMZPQ7bg= 8 + golang.org/x/term v0.32.0/go.mod h1:uZG1FhGx848Sqfsq4/DlJr3xGGsYMu/L5GW4abiaEPQ= 11 9 golang.org/x/tools v0.34.0 h1:qIpSLOxeCYGg9TrcJokLBG4KFA6d795g0xkBkiESGlo= 12 10 golang.org/x/tools v0.34.0/go.mod h1:pAP9OwEaY1CAW3HOmg3hLZC5Z0CCmzjAF2UQMSqNARg=
+3 -3
test.go
··· 2 2 // a friendlier and more intuitive API. 3 3 // 4 4 // Simple tests become trivial and test provides mechanisms for adding useful context to test failures. 5 - package test 5 + package test // import "go.followtheprocess.codes/test" 6 6 7 7 import ( 8 8 "bytes" ··· 15 15 "sync" 16 16 "testing" 17 17 18 - "github.com/FollowTheProcess/hue" 19 - "github.com/FollowTheProcess/test/internal/diff" 18 + "go.followtheprocess.codes/hue" 19 + "go.followtheprocess.codes/test/internal/diff" 20 20 ) 21 21 22 22 const (
+2 -2
test_test.go
··· 10 10 "slices" 11 11 "testing" 12 12 13 - "github.com/FollowTheProcess/snapshot" 14 - "github.com/FollowTheProcess/test" 13 + "go.followtheprocess.codes/snapshot" 14 + "go.followtheprocess.codes/test" 15 15 ) 16 16 17 17 var update = flag.Bool("update", false, "Update snapshots")
+1 -1
internal/diff/diff_test.go
··· 10 10 "path/filepath" 11 11 "testing" 12 12 13 - "github.com/FollowTheProcess/test/internal/diff" 13 + "go.followtheprocess.codes/test/internal/diff" 14 14 "golang.org/x/tools/txtar" 15 15 ) 16 16