...

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

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

     1mod=example.com/tidy
     2base=v0.0.1
     3success=false
     4-- want --
     5# diagnostics
     6go.mod: the following requirements are needed
     7	example.com/basic@v1.1.2
     8Run 'go mod tidy' to add missing requirements.
     9
    10# summary
    11Suggested version: v0.0.2
    12-- go.mod --
    13module example.com/tidy
    14
    15go 1.12
    16-- tidy.go --
    17package tidy
    18
    19import _ "example.com/basic/a"

View as plain text