mirror of https://github.com/statping/statping
16 lines
240 B
Go
16 lines
240 B
Go
![]() |
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)
|
||
|
assert.Equal(t, 2, amount)
|
||
|
})
|
||
|
|
||
|
}
|