statping/core/integrations/integrations_test.go

16 lines
240 B
Go
Raw Normal View History

2020-01-03 06:10:25 +00:00
package integrations
import (
"github.com/stretchr/testify/assert"
"testing"
)
func TestIntegrations(t *testing.T) {
t.Run("Collect Integrations", func(t *testing.T) {
amount := len(Integrations)
2020-01-04 02:03:59 +00:00
assert.Equal(t, 3, amount)
2020-01-03 06:10:25 +00:00
})
}