add basic oui variable check

should contain information for the known organizational unique
identifiers
This commit is contained in:
Kent Gruber 2018-05-01 15:47:05 -04:00
parent c71113b321
commit 90676d0289

View file

@ -1,3 +1,9 @@
package network
import "testing"
func TestOuiVar(t *testing.T) {
if len(oui) <= 0 {
t.Error("unable to find any oui infromation")
}
}