* Changed reference to Caddy over to CoreDNS * Removing references to caddy * Fixed misleading error message to reference coredns * Cleaning up references to caddy * Adding clean and deps targets Muscle memory is resulting in "make clean" commands. * Adding test target to makefile * More "Caddy" cleanup
12 lines
217 B
Go
12 lines
217 B
Go
package assets
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
)
|
|
|
|
func TestPath(t *testing.T) {
|
|
if actual := Path(); !strings.HasSuffix(actual, ".coredns") {
|
|
t.Errorf("Expected path to be a .coredns folder, got: %v", actual)
|
|
}
|
|
}
|