github.com/0xKiwi/rules_go@v0.24.3/tests/core/go_binary/out_test.go (about)

     1  package main
     2  
     3  import (
     4  	"os"
     5  	"testing"
     6  )
     7  
     8  func TestCustomBinaryName(t *testing.T) {
     9  	_, err := os.Stat("alt_bin")
    10  	if err != nil {
    11  		t.Error(err)
    12  	}
    13  }