mirror of
https://github.com/tailscale/tailscale.git
synced 2025-05-16 15:29:28 +00:00
20 lines
387 B
Go
20 lines
387 B
Go
![]() |
// Copyright (c) Tailscale Inc & AUTHORS
|
||
|
// SPDX-License-Identifier: BSD-3-Clause
|
||
|
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"tailscale.com/tstest/deptest"
|
||
|
)
|
||
|
|
||
|
func TestDeps(t *testing.T) {
|
||
|
deptest.DepChecker{
|
||
|
BadDeps: map[string]string{
|
||
|
"tailscale.com/tailcfg": "circular dependency via go generate",
|
||
|
"tailscale.com/version": "circular dependency via go generate",
|
||
|
},
|
||
|
}.Check(t)
|
||
|
}
|