1
0
mirror of https://github.com/mgechev/revive.git synced 2024-11-24 08:32:22 +02:00
revive/test/unhandled-error_test.go
SalvadorC c8ee35a500 adds blacklist to unhandled-error (#128)
* adds blacklist for unhandled-error

* uses ignoreList in place of blackList
2019-04-29 19:56:12 -07:00

19 lines
427 B
Go

package test
import (
"testing"
"github.com/mgechev/revive/lint"
"github.com/mgechev/revive/rule"
)
func TestUnhandledError(t *testing.T) {
testRule(t, "unhandled-error", &rule.UnhandledErrorRule{})
}
func TestUnhandledErrorWithBlacklist(t *testing.T) {
args := []interface{}{"os.Chdir", "unhandledError1"}
testRule(t, "unhandled-error-w-ignorelist", &rule.UnhandledErrorRule{}, &lint.RuleConfig{Arguments: args})
}