mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 17:08:53 +00:00
14 lines
276 B
Go
14 lines
276 B
Go
package service
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/fleetdm/fleet/v4/server/fleet/policytest"
|
|
)
|
|
|
|
func TestMemFailingPolicySet(t *testing.T) {
|
|
m := NewMemFailingPolicySet()
|
|
policytest.RunFailing1000hosts(t, m)
|
|
m = NewMemFailingPolicySet()
|
|
policytest.RunFailingBasic(t, m)
|
|
}
|