blob: 7c6ba7f3359006210c74b5b0565fd44e91c92753 [file] [log] [blame]
package main
import (
"os"
"testing"
)
func TestCustomBinaryName(t *testing.T) {
_, err := os.Stat("alt_bin")
if err != nil {
t.Error(err)
}
}