Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(136)

Unified Diff: third_party/closure_linter/closure_linter/error_fixer_test.py

Issue 411243002: closure_linter: 2.3.4 => 2.3.14 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove checker Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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()
« no previous file with comments | « third_party/closure_linter/closure_linter/error_fixer.py ('k') | third_party/closure_linter/closure_linter/errorrecord.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698