1 package handlers 2 3 import ( 4 "testing" 5 6 "github.com/stretchr/testify/assert" 7 ) 8 9 func TestLogout(t *testing.T) { 10 _, _, err := proxyHandler.Logout(nil, nil) 11 assert.NoError(t, err) 12 } 13
View as plain text