bettercap/network/oui_test.go
Kent Gruber 90676d0289 add basic oui variable check
should contain information for the known organizational unique
identifiers
2018-05-01 15:47:05 -04:00

9 lines
140 B
Go

package network
import "testing"
func TestOuiVar(t *testing.T) {
if len(oui) <= 0 {
t.Error("unable to find any oui infromation")
}
}