mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
15 lines
276 B
Go
15 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)
|
|
}
|