blob: 07e6f6146c8024f0d556b6acf3c3eb837b37ee0c [file] [log] [blame]
// Copyright 2019 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package buildenv
import (
"testing"
)
func TestEnvironmentNextZone(t *testing.T) {
env := Environment{
VMZones: []string{"texas", "california", "washington"},
}
wantOneOf := []string{"texas", "california", "washington"}
got := env.RandomVMZone()
if !containsString(got, wantOneOf) {
t.Errorf("got=%q; want %v", got, wantOneOf)
}
}
func containsString(item string, items []string) bool {
for _, s := range items {
if item == s {
return true
}
}
return false
}