1
0
mirror of https://github.com/mgechev/revive.git synced 2024-11-24 08:32:22 +02:00
revive/test/duplicated-import_test.go
SalvadorC fbefad8558 New rule: duplicated-imports (#111)
* Adds rule superfluous-else (an extension of indent-error-flow)

* Fix superfluous-else rule struct namming.

* Adds superfuous-else rule to the rules table

* Adds confusing-naming rule

* adds multifile test

* clean-up

* fix config.go

* clean master

* new ADS rule: newerr

* ADS-print working version

* ads-print final version

* ads-lost-err working version

* adds duplicated-imports rule

* adds duplicated-imports rule
2019-03-20 11:54:03 -07:00

12 lines
183 B
Go

package test
import (
"testing"
"github.com/mgechev/revive/rule"
)
func TestDuplicatedImports(t *testing.T) {
testRule(t, "duplicated-imports", &rule.DuplicatedImportsRule{})
}