mirror of
				https://github.com/coredns/coredns.git
				synced 2025-10-31 02:03:20 -04:00 
			
		
		
		
	
		
			
	
	
		
			16 lines
		
	
	
		
			224 B
		
	
	
	
		
			Go
		
	
	
	
	
	
		
		
			
		
	
	
			16 lines
		
	
	
		
			224 B
		
	
	
	
		
			Go
		
	
	
	
	
	
|  | package dnstap
 | ||
|  | 
 | ||
|  | import (
 | ||
|  | 	"context"
 | ||
|  | 	"testing"
 | ||
|  | )
 | ||
|  | 
 | ||
|  | func TestDnstapContext(t *testing.T) {
 | ||
|  | 	ctx := tapContext{context.TODO(), Dnstap{}}
 | ||
|  | 	tapper := TapperFromContext(ctx)
 | ||
|  | 
 | ||
|  | 	if tapper == nil {
 | ||
|  | 		t.Fatal("Can't get tapper")
 | ||
|  | 	}
 | ||
|  | }
 |