From 2d117d02fc379cfad1e456ce0b7867e3e0a540c1 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 Upstream-commit: 057bf6f4d133460e9af63e5d8f949045529ddca0 Component: cli --- components/cli/TESTING.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/components/cli/TESTING.md b/components/cli/TESTING.md index 63bba1d3dc..41c1272a9d 100644 --- a/components/cli/TESTING.md +++ b/components/cli/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