| generated by: go run savedir.go . |
| |
| -- LICENSE -- |
| Copyright (c) 2009 The Go Authors. All rights reserved. |
| |
| Redistribution and use in source and binary forms, with or without |
| modification, are permitted provided that the following conditions are |
| met: |
| |
| * Redistributions of source code must retain the above copyright |
| notice, this list of conditions and the following disclaimer. |
| * Redistributions in binary form must reproduce the above |
| copyright notice, this list of conditions and the following disclaimer |
| in the documentation and/or other materials provided with the |
| distribution. |
| * Neither the name of Google Inc. nor the names of its |
| contributors may be used to endorse or promote products derived from |
| this software without specific prior written permission. |
| |
| THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| -- README.md -- |
| This package collects pithy sayings. |
| |
| It's part of a demonstration of |
| [package versioning in Go](https://research.swtch.com/vgo1). |
| -- 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/quote/v2" |
| |
| // Hello returns a greeting. |
| func Hello() string { |
| return quote.HelloV2() |
| } |
| |
| // Glass returns a useful phrase for world travelers. |
| func Glass() string { |
| // See http://www.oocities.org/nodotus/hbglass.html. |
| return quote.GlassV2() |
| } |
| |
| // Go returns a Go proverb. |
| func Go() string { |
| return quote.GoV2() |
| } |
| |
| // Opt returns an optimization truth. |
| func Opt() string { |
| // Wisdom from ken. |
| return quote.OptV2() |
| } |
| -- 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) |
| } |
| } |
| -- v3/go.mod -- |
| module rsc.io/quote/v3 |
| |
| require rsc.io/sampler v1.3.0 |
| |
| -- v3/go.sum -- |
| golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c h1:qgOY6WgZOaTkIIMiVjBQcw93ERBE4m30iBm00nkL0i8= |
| golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= |
| rsc.io/sampler v1.99.99 h1:7i08f/p5TBU5joCPW3GjWG1ZFCmr28ybGqlXtelhEK8= |
| rsc.io/sampler v1.99.99/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA= |
| -- v3/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 HelloV3() string { |
| return sampler.Hello() |
| } |
| |
| // Glass returns a useful phrase for world travelers. |
| func GlassV3() 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 GoV3() string { |
| return "Don't communicate by sharing memory, share memory by communicating." |
| } |
| |
| // Opt returns an optimization truth. |
| func OptV3() string { |
| // Wisdom from ken. |
| return "If a program is too slow, it must have a loop." |
| } |