testenv_test.go 286 B

123456789101112131415161718
  1. // Copyright (c) Tailscale Inc & AUTHORS
  2. // SPDX-License-Identifier: BSD-3-Clause
  3. package testenv
  4. import (
  5. "testing"
  6. "tailscale.com/tstest/deptest"
  7. )
  8. func TestDeps(t *testing.T) {
  9. deptest.DepChecker{
  10. BadDeps: map[string]string{
  11. "testing": "see pkg docs",
  12. },
  13. }.Check(t)
  14. }