github.com/zxy12/go_duplicate_112_new@v0.0.0-20200807091221-747231827200/src/cmd/go/testdata/script/mod_gopkg_unstable.txt (about)

     1  env GO111MODULE=on
     2  
     3  cp go.mod.empty go.mod
     4  go get -d gopkg.in/dummy.v2-unstable
     5  
     6  cp x.go.txt x.go
     7  cp go.mod.empty go.mod
     8  go list
     9  
    10  [!net] skip
    11  
    12  env GOPROXY=
    13  go get gopkg.in/macaroon-bakery.v2-unstable/bakery
    14  go list -m all
    15  stdout 'gopkg.in/macaroon-bakery.v2-unstable v2.0.0-[0-9]+-[0-9a-f]+$'
    16  
    17  -- go.mod.empty --
    18  module m
    19  
    20  -- x.go.txt --
    21  package x
    22  import _ "gopkg.in/dummy.v2-unstable"