mirror of
				https://github.com/coredns/coredns.git
				synced 2025-11-04 03:03:14 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			213 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			213 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package assets
 | 
						|
 | 
						|
import (
 | 
						|
	"strings"
 | 
						|
	"testing"
 | 
						|
)
 | 
						|
 | 
						|
func TestPath(t *testing.T) {
 | 
						|
	if actual := Path(); !strings.HasSuffix(actual, ".caddy") {
 | 
						|
		t.Errorf("Expected path to be a .caddy folder, got: %v", actual)
 | 
						|
	}
 | 
						|
}
 |