зеркало из https://github.com/mozilla/gecko-dev.git
19 строки
413 B
Python
19 строки
413 B
Python
from __future__ import absolute_import, print_function
|
|
|
|
import mozunit
|
|
|
|
LINTER = "lintpref"
|
|
|
|
|
|
def test_lintpref(lint, paths):
|
|
results = lint(paths())
|
|
assert len(results) == 1
|
|
assert results[0].level == "error"
|
|
assert 'pref("dom.webidl.test1", true);' in results[0].message
|
|
assert "bad.js" in results[0].relpath
|
|
assert results[0].lineno == 2
|
|
|
|
|
|
if __name__ == "__main__":
|
|
mozunit.main()
|