mirror of
https://github.com/securego/gosec.git
synced 2024-11-06 12:05:52 +00:00
14 lines
189 B
Go
14 lines
189 B
Go
|
package output
|
||
|
|
||
|
import (
|
||
|
. "github.com/onsi/ginkgo"
|
||
|
. "github.com/onsi/gomega"
|
||
|
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestRules(t *testing.T) {
|
||
|
RegisterFailHandler(Fail)
|
||
|
RunSpecs(t, "Formatters Suite")
|
||
|
}
|