mirror of
https://github.com/mgechev/revive.git
synced 2024-11-24 08:32:22 +02:00
c8ee35a500
* adds blacklist for unhandled-error * uses ignoreList in place of blackList
19 lines
427 B
Go
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})
|
|
}
|