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