opendnsmyip_testutil_test.go 475 B

1234567891011121314151617181920212223242526272829303132
  1. // Copyright 2020 Jeffrey H. Johnson.
  2. // Copyright 2020 Gridfinity, LLC.
  3. // Copyright 2019 The Go Authors.
  4. // All rights reserved.
  5. // Use of this source code is governed by the BSD-style
  6. // license that can be found in the LICENSE file.
  7. package opendnsmyip_test
  8. import (
  9. "testing"
  10. u "go.gridfinity.dev/leaktestfe"
  11. )
  12. func TestLeakVerifyNoneDisabled(
  13. t *testing.T,
  14. ) {
  15. u.Leakplug(
  16. t,
  17. )
  18. }
  19. }
  20. func TestLeakVerifyNoneEnabled(
  21. t *testing.T,
  22. ) {
  23. u.Leakplug(
  24. t,
  25. )
  26. }