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.
21 lines
330 B
Go
21 lines
330 B
Go
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)
|
|
})
|
|
}
|
|
|
|
func TestShedderClose(t *testing.T) {
|
|
var nop nopCloser
|
|
assert.Nil(t, nop.Close())
|
|
}
|