Remove stale cleanup leftovers
This commit is contained in:
@@ -67,6 +67,20 @@ func TestStatePath(t *testing.T) {
|
||||
}
|
||||
}
|
||||
|
||||
func TestDisplayPath(t *testing.T) {
|
||||
tests := map[string]string{
|
||||
"": ".",
|
||||
"bundle": "bundle",
|
||||
}
|
||||
for path, want := range tests {
|
||||
t.Run(path, func(t *testing.T) {
|
||||
if got := DisplayPath(path); got != want {
|
||||
t.Fatalf("DisplayPath(%q) = %q, want %q", path, got, want)
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
func TestManagedBundleTargets(t *testing.T) {
|
||||
tests := []struct {
|
||||
name string
|
||||
|
||||
Reference in New Issue
Block a user