From 90676d0289eb7358d3392a8913eda44a826a6cb7 Mon Sep 17 00:00:00 2001 From: Kent Gruber Date: Tue, 1 May 2018 15:47:05 -0400 Subject: [PATCH] add basic oui variable check should contain information for the known organizational unique identifiers --- network/oui_test.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/network/oui_test.go b/network/oui_test.go index 06777c76..e54e6720 100644 --- a/network/oui_test.go +++ b/network/oui_test.go @@ -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") + } +}