Index: third_party/closure_linter/closure_linter/error_fixer_test.py |
diff --git a/third_party/closure_linter/closure_linter/error_fixer_test.py b/third_party/closure_linter/closure_linter/error_fixer_test.py |
new file mode 100644 |
index 0000000000000000000000000000000000000000..49f449de42f36f25579e894e35f9254aa95502ce |
--- /dev/null |
+++ b/third_party/closure_linter/closure_linter/error_fixer_test.py |
@@ -0,0 +1,57 @@ |
+#!/usr/bin/env python |
+# |
+# Copyright 2012 The Closure Linter Authors. All Rights Reserved. |
+# Licensed under the Apache License, Version 2.0 (the "License"); |
+# you may not use this file except in compliance with the License. |
+# You may obtain a copy of the License at |
+# |
+# http://www.apache.org/licenses/LICENSE-2.0 |
+# |
+# Unless required by applicable law or agreed to in writing, software |
+# distributed under the License is distributed on an "AS-IS" BASIS, |
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
+# See the License for the specific language governing permissions and |
+# limitations under the License. |
+ |
+"""Unit tests for the error_fixer module.""" |
+ |
+# Allow non-Google copyright |
+# pylint: disable=g-bad-file-header |
+ |
+ |
+ |
+import unittest as googletest |
+from closure_linter import error_fixer |
+from closure_linter import testutil |
+ |
+ |
+class ErrorFixerTest(googletest.TestCase): |
+ """Unit tests for error_fixer.""" |
+ |
+ def setUp(self): |
+ self.error_fixer = error_fixer.ErrorFixer() |
+ |
+ def testDeleteToken(self): |
+ start_token = testutil.TokenizeSourceAndRunEcmaPass(_TEST_SCRIPT) |
+ second_token = start_token.next |
+ self.error_fixer.HandleFile('test_file', start_token) |
+ |
+ self.error_fixer._DeleteToken(start_token) |
+ |
+ self.assertEqual(second_token, self.error_fixer._file_token) |
+ |
+ def testDeleteTokens(self): |
+ start_token = testutil.TokenizeSourceAndRunEcmaPass(_TEST_SCRIPT) |
+ fourth_token = start_token.next.next.next |
+ self.error_fixer.HandleFile('test_file', start_token) |
+ |
+ self.error_fixer._DeleteTokens(start_token, 3) |
+ |
+ self.assertEqual(fourth_token, self.error_fixer._file_token) |
+ |
+_TEST_SCRIPT = """\ |
+var x = 3; |
+""" |
+ |
+if __name__ == '__main__': |
+ googletest.main() |