...

Text file src/golang.org/x/exp/cmd/gorelease/testdata/tidy/missing_req_submodule.test

Documentation: golang.org/x/exp/cmd/gorelease/testdata/tidy

     1mod=example.com/tidy
     2base=v0.0.1
     3success=true
     4-- want --
     5# summary
     6Suggested version: v0.0.2
     7-- go.mod --
     8module example.com/tidy
     9
    10go 1.12
    11-- foo/go.mod --
    12module example.com/tidy/foo
    13
    14go 1.12
    15-- tidy.go --
    16package tidy
    17-- foo/tidy.go --
    18package subpkg
    19
    20import _ "example.com/basic/a"

View as plain text