mirror of
https://github.com/aquasecurity/trivy.git
synced 2025-12-05 20:40:16 -08:00
test(go): set GOPATH for tests (#9785)
This commit is contained in:
@@ -3,6 +3,7 @@ package mod
|
|||||||
import (
|
import (
|
||||||
"sort"
|
"sort"
|
||||||
"testing"
|
"testing"
|
||||||
|
"testing/fstest"
|
||||||
|
|
||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
"github.com/stretchr/testify/require"
|
"github.com/stretchr/testify/require"
|
||||||
@@ -345,6 +346,8 @@ func Test_gomodAnalyzer_Analyze(t *testing.T) {
|
|||||||
|
|
||||||
// Set GOPATH fs.FS for testing
|
// Set GOPATH fs.FS for testing
|
||||||
ma := a.(*gomodAnalyzer)
|
ma := a.(*gomodAnalyzer)
|
||||||
|
// Use empty fs.FS to simulate no GOPATH scenario
|
||||||
|
ma.gopathFS = fstest.MapFS{}
|
||||||
if tt.gopath {
|
if tt.gopath {
|
||||||
ma.gopathFS = gopathFS
|
ma.gopathFS = gopathFS
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user