...

Text file src/cmd/go/testdata/script/mod_list_m.txt

Documentation: cmd/go/testdata/script

     1go mod tidy
     2
     3go list -m -json all
     4stdout '"GoModSum":\s+"h1:.+"'
     5stdout '"Sum":\s+"h1:.+"'
     6
     7-- go.mod --
     8module example
     9
    10go 1.21
    11
    12require rsc.io/quote v1.5.1
    13-- example.go --
    14package example
    15
    16import _ "rsc.io/quote"

View as plain text