...

Text file src/golang.org/x/exp/cmd/gorelease/testdata/tidy/empty_sum.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.sum: one or more sums are missing. Run 'go mod tidy' to add missing sums.
     7
     8# summary
     9Suggested version: v0.1.0
    10-- go.mod --
    11module example.com/tidy
    12
    13go 1.12
    14
    15require example.com/basic v1.0.1
    16-- go.sum --
    17-- tidy.go --
    18package tidy
    19
    20import _ "example.com/basic/a"

View as plain text