From 26d067082eb4e1705d2778605494bcf0210ad6c0 Mon Sep 17 00:00:00 2001 From: Anatoly Prohacky Date: Sat, 13 Aug 2022 16:35:11 +1000 Subject: [PATCH] =?UTF-8?q?=D0=9A=D0=BE=D1=80=D1=80=D0=B5=D0=BA=D1=82?= =?UTF-8?q?=D0=B8=D1=80=D0=BE=D0=B2=D0=BA=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- acl/testing.go | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 acl/testing.go diff --git a/acl/testing.go b/acl/testing.go deleted file mode 100644 index b8cb895..0000000 --- a/acl/testing.go +++ /dev/null @@ -1,19 +0,0 @@ -package acl - -import ( - "testing" -) - -// TestAcl -func TestAcl(t *testing.T) AclBit { - t.Helper() - - var a, b AclBit - - for i := 0; i < 63; i++ { - b = New(NumBit(i)) - a = Unite(a, b) - } - - return a -}