From 057bf6f4d133460e9af63e5d8f949045529ddca0 Mon Sep 17 00:00:00 2001 From: Vincent Demeester Date: Mon, 2 Jul 2018 09:24:28 +0200 Subject: [PATCH] Update TESTING.md to replace testify by gotest.tools Signed-off-by: Vincent Demeester --- TESTING.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/TESTING.md b/TESTING.md index 63bba1d3dc..41c1272a9d 100644 --- a/TESTING.md +++ b/TESTING.md @@ -26,13 +26,11 @@ Test where appropriate, but may not be appropriate in all cases. Assertions should be made using -[testify/assert](https://godoc.org/github.com/stretchr/testify/assert) and test -requirements should be verified using -[testify/require](https://godoc.org/github.com/stretchr/testify/require). +[gotest.tools/assert](https://godoc.org/gotest.tools/assert). Fakes, and testing utilities can be found in [internal/test](https://godoc.org/github.com/docker/cli/internal/test) and -[gotestyourself](https://godoc.org/github.com/gotestyourself/gotestyourself). +[gotest.tools](https://godoc.org/gotest.tools). ## End-to-End Test Suite