mirror of
				https://github.com/coredns/coredns.git
				synced 2025-11-03 18:53:13 -05:00 
			
		
		
		
	* 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
		
			
				
	
	
		
			13 lines
		
	
	
		
			217 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			13 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)
 | 
						|
	}
 | 
						|
}
 |