orbiter/autoscaler/autoscaler_test.go
Gianluca Arbezzano 04ee7ac918
Fixed test
2017-08-08 21:16:26 +02:00

14 lines
178 B
Go

package autoscaler
import (
"testing"
)
func TestFakeProvider(t *testing.T) {
var p Provider
a := NewAutoscaler(p, "fgaerge", 3, 4, 1)
if a.provider != p {
t.Fail()
}
}