mirror of
https://github.com/securego/gosec.git
synced 2024-11-06 03:55:50 +00:00
31 lines
564 B
Go
31 lines
564 B
Go
|
package gas_test
|
||
|
|
||
|
import (
|
||
|
. "github.com/onsi/ginkgo"
|
||
|
. "github.com/onsi/gomega"
|
||
|
)
|
||
|
|
||
|
var _ = Describe("ImportTracker", func() {
|
||
|
var (
|
||
|
source string
|
||
|
)
|
||
|
|
||
|
BeforeEach(func() {
|
||
|
source = `// TODO(gm)`
|
||
|
})
|
||
|
Context("when I have a valid go package", func() {
|
||
|
It("should record all import specs", func() {
|
||
|
Expect(1).Should(Equal(1))
|
||
|
Fail("Not implemented")
|
||
|
})
|
||
|
|
||
|
It("should correctly track aliased package imports", func() {
|
||
|
Fail("Not implemented")
|
||
|
})
|
||
|
|
||
|
It("should correctly track init only packages", func() {
|
||
|
Fail("Not implemented")
|
||
|
})
|
||
|
})
|
||
|
})
|