File tree Expand file tree Collapse file tree 6 files changed +18
-20
lines changed
Expand file tree Collapse file tree 6 files changed +18
-20
lines changed Original file line number Diff line number Diff line change 11# test
22
33[ ![ 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 )
55[ ![ Go Report Card] ( https://goreportcard.com/badge/github.com/FollowTheProcess/test )] ( https://goreportcard.com/report/github.com/FollowTheProcess/test )
66[ ![ GitHub] ( https://img.shields.io/github/v/release/FollowTheProcess/test?logo=github&sort=semver )] ( https://github.com/FollowTheProcess/test )
77[ ![ CI] ( https://github.com/FollowTheProcess/test/workflows/CI/badge.svg )] ( https://github.com/FollowTheProcess/test/actions?query=workflow%3ACI )
@@ -19,7 +19,7 @@ but might find it useful anyway 🙂
1919## Installation
2020
2121``` shell
22- go get github.com/FollowTheProcess /test@latest
22+ go get go.followtheprocess.codes /test@latest
2323```
2424
2525## Usage
Original file line number Diff line number Diff line change 1- module github.com/FollowTheProcess /test
1+ module go.followtheprocess.codes /test
22
33go 1.24
44
55require (
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
88 golang.org/x/tools v0.34.0
99)
1010
1111require (
1212 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
1414)
Original file line number Diff line number Diff line change 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 =
55golang.org/x/sys v0.33.0 h1:q3i8TbbEz+JRD9ywIRlyRAQbM0qF7hu24q3teo2hbuw =
66golang.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 =
119golang.org/x/tools v0.34.0 h1:qIpSLOxeCYGg9TrcJokLBG4KFA6d795g0xkBkiESGlo =
1210golang.org/x/tools v0.34.0 /go.mod h1:pAP9OwEaY1CAW3HOmg3hLZC5Z0CCmzjAF2UQMSqNARg =
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import (
1010 "path/filepath"
1111 "testing"
1212
13- "github.com/FollowTheProcess /test/internal/diff"
13+ "go.followtheprocess.codes /test/internal/diff"
1414 "golang.org/x/tools/txtar"
1515)
1616
Original file line number Diff line number Diff line change 22// a friendlier and more intuitive API.
33//
44// 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"
66
77import (
88 "bytes"
@@ -15,8 +15,8 @@ import (
1515 "sync"
1616 "testing"
1717
18- "github.com/FollowTheProcess /hue"
19- "github.com/FollowTheProcess /test/internal/diff"
18+ "go.followtheprocess.codes /hue"
19+ "go.followtheprocess.codes /test/internal/diff"
2020)
2121
2222const (
Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ import (
1010 "slices"
1111 "testing"
1212
13- "github.com/FollowTheProcess /snapshot"
14- "github.com/FollowTheProcess /test"
13+ "go.followtheprocess.codes /snapshot"
14+ "go.followtheprocess.codes /test"
1515)
1616
1717var update = flag .Bool ("update" , false , "Update snapshots" )
You can’t perform that action at this time.
0 commit comments