Open dadrian opened 7 years ago
I went through and looked at which lints don't have tests by name. Here is the list that we should investigate:
In case it helps, this is the code I used to check:
import sys
e = set()
for l in sys.stdin:
l = l.strip()
if "test" not in l:
e.add(l)
else:
l = l.replace("_test", "")
e.remove(l)
print e
We should have a meta-test, that enforces that any lint file has an associated test file.