mirror of
https://github.com/golang/go
synced 2024-11-19 01:14:39 -07:00
002d754683
Test the case described in https://github.com/fatih/vim-go/issues/2673#issuecomment-622307211. Change-Id: I55ff3b8719fc255ec0901cf3778e68b48630323d Reviewed-on: https://go-review.googlesource.com/c/tools/+/232360 Run-TryBot: Rebecca Stambler <rstambler@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Robert Findley <rfindley@google.com>
33 lines
746 B
Go
33 lines
746 B
Go
// Copyright 2020 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.
|
|
|
|
// +build !windows
|
|
|
|
package regtest
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestBadGOPATH(t *testing.T) {
|
|
const missingImport = `
|
|
-- main.go --
|
|
package main
|
|
|
|
func _() {
|
|
fmt.Println("Hello World")
|
|
}
|
|
`
|
|
// Test the case given in
|
|
// https://github.com/fatih/vim-go/issues/2673#issuecomment-622307211.
|
|
runner.Run(t, missingImport, func(t *testing.T, env *Env) {
|
|
env.OpenFile("main.go")
|
|
env.Await(env.DiagnosticAtRegexp("main.go", "fmt"))
|
|
if err := env.Editor.OrganizeImports(env.Ctx, "main.go"); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}, WithEnv(fmt.Sprintf("GOPATH=:/path/to/gopath")))
|
|
}
|