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

Side by Side Diff: Tools/Scripts/webkitpy/style/checkers/python_unittest.py

Issue 795353004: Rebase PythonCheckerTest results after upgrade to pylint 1.4.0. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (C) 2010 Chris Jerdonek (cjerdonek@webkit.org) 1 # Copyright (C) 2010 Chris Jerdonek (cjerdonek@webkit.org)
2 # 2 #
3 # Redistribution and use in source and binary forms, with or without 3 # Redistribution and use in source and binary forms, with or without
4 # modification, are permitted provided that the following conditions 4 # modification, are permitted provided that the following conditions
5 # are met: 5 # are met:
6 # 1. Redistributions of source code must retain the above copyright 6 # 1. Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # 2. Redistributions in binary form must reproduce the above copyright 8 # 2. Redistributions in binary form must reproduce the above copyright
9 # notice, this list of conditions and the following disclaimer in the 9 # notice, this list of conditions and the following disclaimer in the
10 # documentation and/or other materials provided with the distribution. 10 # documentation and/or other materials provided with the distribution.
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 errors.append(error) 52 errors.append(error)
53 53
54 current_dir = os.path.dirname(__file__) 54 current_dir = os.path.dirname(__file__)
55 file_path = os.path.join(current_dir, "python_unittest_input.py") 55 file_path = os.path.join(current_dir, "python_unittest_input.py")
56 56
57 checker = PythonChecker(file_path, _mock_handle_style_error) 57 checker = PythonChecker(file_path, _mock_handle_style_error)
58 checker.check(lines=[]) 58 checker.check(lines=[])
59 59
60 self.assertEqual(errors, [ 60 self.assertEqual(errors, [
61 (4, "pep8/W291", 5, "trailing whitespace"), 61 (4, "pep8/W291", 5, "trailing whitespace"),
62 (4, "pylint/E0602(undefined-variable)", 5, 62 (4, "pylint/E1601(print-statement)", 5, "[] print statement used"),
63 "[] Undefined variable 'error'"), 63 (4, "pylint/E0602(undefined-variable)", 5, "[] Undefined variable 'e rror'"),
64 ]) 64 ])
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698