mirror of
https://github.com/securego/gosec.git
synced 2024-11-05 19:45:51 +00:00
6943f9e5e4
- Get rid of 'core' and move CLI to cmd/gas directory - Migrate (most) tests to use Ginkgo and testutils framework - GAS now expects package to reside in $GOPATH - GAS now can resolve dependencies for better type checking (if package on GOPATH) - Simplified public API
13 lines
188 B
Go
13 lines
188 B
Go
package rules_test
|
|
|
|
import (
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
|
|
"testing"
|
|
)
|
|
|
|
func TestRules(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "Rules Suite")
|
|
}
|