mirror of
https://github.com/golang/go
synced 2024-11-05 18:46:11 -07:00
757ca719ca
For various reasons we need an internal-facing imports API. Move imports to internal/imports, leaving behind a small wrapper package. The wrapper package captures the globals at time of call into the options struct. Also converts the last goimports tests to use the test helpers, and fixes go/packages in module mode to work with empty modules, which was necessary to get those last tests converted. Change-Id: Ib1212c67908741a1800b992ef1935d563c6ade32 Reviewed-on: https://go-review.googlesource.com/c/tools/+/175437 Run-TryBot: Heschi Kreinick <heschi@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Cottrell <iancottrell@google.com>
99 lines
2.2 KiB
Plaintext
99 lines
2.2 KiB
Plaintext
rsc.io/quote@v1.5.2
|
|
|
|
-- .mod --
|
|
module "rsc.io/quote"
|
|
|
|
require "rsc.io/sampler" v1.3.0
|
|
-- .info --
|
|
{"Version":"v1.5.2","Name":"c4d4236f92427c64bfbcf1cc3f8142ab18f30b22","Short":"c4d4236f9242","Time":"2018-02-14T15:44:20Z"}
|
|
-- buggy/buggy_test.go --
|
|
// Copyright 2018 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.
|
|
|
|
package buggy
|
|
|
|
import "testing"
|
|
|
|
func Test(t *testing.T) {
|
|
t.Fatal("buggy!")
|
|
}
|
|
-- go.mod --
|
|
module "rsc.io/quote"
|
|
|
|
require "rsc.io/sampler" v1.3.0
|
|
-- quote.go --
|
|
// Copyright 2018 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.
|
|
|
|
// Package quote collects pithy sayings.
|
|
package quote // import "rsc.io/quote"
|
|
|
|
import "rsc.io/sampler"
|
|
|
|
// Hello returns a greeting.
|
|
func Hello() string {
|
|
return sampler.Hello()
|
|
}
|
|
|
|
// Glass returns a useful phrase for world travelers.
|
|
func Glass() string {
|
|
// See http://www.oocities.org/nodotus/hbglass.html.
|
|
return "I can eat glass and it doesn't hurt me."
|
|
}
|
|
|
|
// Go returns a Go proverb.
|
|
func Go() string {
|
|
return "Don't communicate by sharing memory, share memory by communicating."
|
|
}
|
|
|
|
// Opt returns an optimization truth.
|
|
func Opt() string {
|
|
// Wisdom from ken.
|
|
return "If a program is too slow, it must have a loop."
|
|
}
|
|
-- quote_test.go --
|
|
// Copyright 2018 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.
|
|
|
|
package quote
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
)
|
|
|
|
func init() {
|
|
os.Setenv("LC_ALL", "en")
|
|
}
|
|
|
|
func TestHello(t *testing.T) {
|
|
hello := "Hello, world."
|
|
if out := Hello(); out != hello {
|
|
t.Errorf("Hello() = %q, want %q", out, hello)
|
|
}
|
|
}
|
|
|
|
func TestGlass(t *testing.T) {
|
|
glass := "I can eat glass and it doesn't hurt me."
|
|
if out := Glass(); out != glass {
|
|
t.Errorf("Glass() = %q, want %q", out, glass)
|
|
}
|
|
}
|
|
|
|
func TestGo(t *testing.T) {
|
|
go1 := "Don't communicate by sharing memory, share memory by communicating."
|
|
if out := Go(); out != go1 {
|
|
t.Errorf("Go() = %q, want %q", out, go1)
|
|
}
|
|
}
|
|
|
|
func TestOpt(t *testing.T) {
|
|
opt := "If a program is too slow, it must have a loop."
|
|
if out := Opt(); out != opt {
|
|
t.Errorf("Opt() = %q, want %q", out, opt)
|
|
}
|
|
}
|