github.com/khulnasoft-lab/defsec@v1.0.5-0.20230827010352-5e9f46893d95/pkg/scanners/azure/functions/resource_test.go (about) 1 package functions 2 3 import ( 4 "testing" 5 6 "github.com/stretchr/testify/assert" 7 ) 8 9 func Test_ResourceID(t *testing.T) { 10 assert.Equal(t, "/test1/test2", ResourceID("test1", "test2")) 11 assert.Equal(t, "/test1/123", ResourceID("test1", 123)) 12 }