You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
242 B
Go
16 lines
242 B
Go
4 years ago
|
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)
|
||
|
})
|
||
|
}
|