orbiter/autoscaler/autoscaler_test.go
Gianluca Arbezzano 747f564a7a First commit
2017-02-21 00:07:57 +00:00

14 lines
175 B
Go

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