github.com/anakojm/hugo-katex@v0.0.0-20231023141351-42d6f5de9c0b/testscripts/commands/mod_vendor.txt (about)

     1  dostounix golden/vendor.txt
     2  
     3  hugo mod vendor
     4  cmp _vendor/modules.txt golden/vendor.txt
     5  ls _vendor/github.com/gohugoio/hugo-mod-integrationtests/withconfigtoml
     6  stdout 'config.toml'
     7  ls _vendor/github.com/gohugoio/hugo-mod-integrationtests/withhugotoml
     8  stdout 'hugo.toml'
     9  
    10  
    11  
    12  -- hugo.toml --
    13  title = "Hugo Modules Test"
    14  [module]
    15  [[module.imports]]
    16  path="github.com/gohugoio/hugo-mod-integrationtests/withconfigtoml"
    17  [[module.imports]]
    18  path="github.com/gohugoio/hugo-mod-integrationtests/withhugotoml"
    19  -- go.mod --
    20  go 1.19
    21  
    22  module github.com/gohugoio/testmod
    23  
    24  require (
    25      github.com/gohugoio/hugo-mod-integrationtests/withconfigtoml v1.0.0 
    26      github.com/gohugoio/hugo-mod-integrationtests/withhugotoml v1.0.0
    27  )
    28  
    29  -- golden/vendor.txt --
    30  # github.com/gohugoio/hugo-mod-integrationtests/withconfigtoml v1.0.0
    31  # github.com/gohugoio/hugo-mod-integrationtests/withhugotoml v1.0.0