initial import
This commit is contained in:
15
core/load/sheddergroup_test.go
Normal file
15
core/load/sheddergroup_test.go
Normal file
@@ -0,0 +1,15 @@
|
||||
package load
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
)
|
||||
|
||||
func TestGroup(t *testing.T) {
|
||||
group := NewShedderGroup()
|
||||
t.Run("get", func(t *testing.T) {
|
||||
limiter := group.GetShedder("test")
|
||||
assert.NotNil(t, limiter)
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user