mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
14 lines
199 B
Go
14 lines
199 B
Go
|
package bazel_test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/prysmaticlabs/prysm/build/bazel"
|
||
|
)
|
||
|
|
||
|
func TestBuildWithBazel(t *testing.T) {
|
||
|
if !bazel.BuiltWithBazel() {
|
||
|
t.Error("not built with Bazel")
|
||
|
}
|
||
|
}
|