mirror of
https://github.com/securego/gosec.git
synced 2024-11-05 19:45:51 +00:00
actually skip tests until implementation exists
This commit is contained in:
parent
d4311c96e2
commit
02901b98fc
3 changed files with 8 additions and 8 deletions
|
@ -8,7 +8,7 @@ import (
|
|||
var _ = Describe("Helpers", func() {
|
||||
Context("todo", func() {
|
||||
It("should fail", func() {
|
||||
Fail("Not implemented")
|
||||
Skip("Not implemented")
|
||||
})
|
||||
})
|
||||
})
|
||||
|
|
|
@ -15,15 +15,15 @@ var _ = Describe("ImportTracker", func() {
|
|||
})
|
||||
Context("when I have a valid go package", func() {
|
||||
It("should record all import specs", func() {
|
||||
Fail("Not implemented")
|
||||
Skip("Not implemented")
|
||||
})
|
||||
|
||||
It("should correctly track aliased package imports", func() {
|
||||
Fail("Not implemented")
|
||||
Skip("Not implemented")
|
||||
})
|
||||
|
||||
It("should correctly track init only packages", func() {
|
||||
Fail("Not implemented")
|
||||
Skip("Not implemented")
|
||||
})
|
||||
})
|
||||
})
|
||||
|
|
|
@ -45,11 +45,11 @@ var _ = Describe("Issue", func() {
|
|||
})
|
||||
|
||||
It("should return an error if specific context is not able to be obtained", func() {
|
||||
Fail("Not implemented")
|
||||
Skip("Not implemented")
|
||||
})
|
||||
|
||||
It("should provide accurate line and file information", func() {
|
||||
Fail("Not implemented")
|
||||
Skip("Not implemented")
|
||||
})
|
||||
|
||||
It("should provide accurate line and file information for multi-line statements", func() {
|
||||
|
@ -87,11 +87,11 @@ var _ = Describe("Issue", func() {
|
|||
})
|
||||
|
||||
It("should maintain the provided severity score", func() {
|
||||
Fail("Not implemented")
|
||||
Skip("Not implemented")
|
||||
})
|
||||
|
||||
It("should maintain the provided confidence score", func() {
|
||||
Fail("Not implemented")
|
||||
Skip("Not implemented")
|
||||
})
|
||||
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue