mirror of
https://github.com/anchore/syft.git
synced 2025-11-18 00:43:20 +01:00
15 lines
352 B
Go
15 lines
352 B
Go
package cli
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func Test_RequestedPathIncludesSymlink(t *testing.T) {
|
|
// path contains a symlink
|
|
path := "test-fixtures/image-pkg-coverage/pkgs/java/example-java-app-maven-0.1.0.jar"
|
|
_, stdout, _ := runSyft(t, nil, "packages", path)
|
|
assert.Contains(t, stdout, "example-java-app-maven")
|
|
}
|