blob: 58a653557ecd2ca227b75435f2f753b14f216df5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package service
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestGetProvisioners(t *testing.T) {
provisioners := GetProvisioners()
assert.Len(t, provisioners, 4)
}
|