From d09993474284340c950db5d10f9a4a55ef925010 Mon Sep 17 00:00:00 2001 From: David Beitey Date: Fri, 17 Feb 2023 10:53:30 +1000 Subject: [PATCH] docs: Update URLs in README --- README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index ce6d3de28..b0d8cefd1 100644 --- a/README.md +++ b/README.md @@ -16,14 +16,14 @@ Features include: Get started: * Install testify with [one line of code](#installation), or [update it with another](#staying-up-to-date) - * For an introduction to writing test code in Go, see http://golang.org/doc/code.html#Testing - * Check out the API Documentation http://godoc.org/github.com/stretchr/testify - * To make your testing life easier, check out our other project, [gorc](http://github.com/stretchr/gorc) - * A little about [Test-Driven Development (TDD)](http://en.wikipedia.org/wiki/Test-driven_development) + * For an introduction to writing test code in Go, see https://go.dev/doc/code#Testing + * Check out the API Documentation https://pkg.go.dev/github.com/stretchr/testify + * To make your testing life easier, check out our other project, [gorc](https://github.com/stretchr/gorc) + * A little about [Test-Driven Development (TDD)](https://en.wikipedia.org/wiki/Test-driven_development) -[`assert`](http://godoc.org/github.com/stretchr/testify/assert "API documentation") package +[`assert`](https://pkg.go.dev/github.com/stretchr/testify/assert "API documentation") package ------------------------------------------------------------------------------------------- The `assert` package provides some helpful methods that allow you to write better test code in Go. @@ -100,14 +100,14 @@ func TestSomething(t *testing.T) { } ``` -[`require`](http://godoc.org/github.com/stretchr/testify/require "API documentation") package +[`require`](https://pkg.go.dev/github.com/stretchr/testify/require "API documentation") package --------------------------------------------------------------------------------------------- The `require` package provides same global functions as the `assert` package, but instead of returning a boolean result they terminate current test. -See [t.FailNow](http://golang.org/pkg/testing/#T.FailNow) for details. +See [t.FailNow](https://pkg.go.dev/testing#T.FailNow) for details. -[`mock`](http://godoc.org/github.com/stretchr/testify/mock "API documentation") package +[`mock`](https://pkg.go.dev/github.com/stretchr/testify/mock "API documentation") package ---------------------------------------------------------------------------------------- The `mock` package provides a mechanism for easily writing mock objects that can be used in place of real objects when writing test code. @@ -217,11 +217,11 @@ func TestSomethingElse2(t *testing.T) { } ``` -For more information on how to write mock code, check out the [API documentation for the `mock` package](http://godoc.org/github.com/stretchr/testify/mock). +For more information on how to write mock code, check out the [API documentation for the `mock` package](https://pkg.go.dev/github.com/stretchr/testify/mock). -You can use the [mockery tool](http://github.com/vektra/mockery) to autogenerate the mock code against an interface as well, making using mocks much quicker. +You can use the [mockery tool](https://github.com/vektra/mockery) to autogenerate the mock code against an interface as well, making using mocks much quicker. -[`suite`](http://godoc.org/github.com/stretchr/testify/suite "API documentation") package +[`suite`](https://pkg.go.dev/github.com/stretchr/testify/suite "API documentation") package ----------------------------------------------------------------------------------------- The `suite` package provides functionality that you might be used to from more common object oriented languages. With it, you can build a testing suite as a struct, build setup/teardown methods and testing methods on your struct, and run them with 'go test' as per normal. @@ -265,7 +265,7 @@ func TestExampleTestSuite(t *testing.T) { For a more complete example, using all of the functionality provided by the suite package, look at our [example testing suite](https://github.com/stretchr/testify/blob/master/suite/suite_test.go) -For more information on writing suites, check out the [API documentation for the `suite` package](http://godoc.org/github.com/stretchr/testify/suite). +For more information on writing suites, check out the [API documentation for the `suite` package](https://pkg.go.dev/github.com/stretchr/testify/suite). `Suite` object has assertion methods: