gohook/hook_test.go
2020-02-22 12:09:45 -04:00

16 lines
162 B
Go

package hook
import (
"fmt"
"testing"
"github.com/vcaesar/tt"
)
func TestAdd(t *testing.T) {
fmt.Println("hook test...")
e := Start()
tt.NotNil(t, e)
}