mirror of
https://github.com/hashicorp/packer.git
synced 2026-09-19 06:21:41 -04:00
13 lines
183 B
Go
13 lines
183 B
Go
package plugin
|
|
|
|
import (
|
|
"math/rand"
|
|
"testing"
|
|
)
|
|
|
|
func TestPluginServerRandom(t *testing.T) {
|
|
if rand.Intn(9999999) == 8498210 {
|
|
t.Fatal("math.rand is not seeded properly")
|
|
}
|
|
}
|