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

Side by Side Diff: third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/text_unittest.py

Issue 2014063002: Run format-webkit on webkitpy code (without string conversion). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 unified diff | Download patch
OLDNEW
1 # Copyright (C) 2009 Google Inc. All rights reserved. 1 # Copyright (C) 2009 Google Inc. All rights reserved.
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 are 4 # modification, are permitted provided that the following conditions are
5 # met: 5 # met:
6 # 6 #
7 # * Redistributions of source code must retain the above copyright 7 # * Redistributions of source code must retain the above copyright
8 # notice, this list of conditions and the following disclaimer. 8 # notice, this list of conditions and the following disclaimer.
9 # * Redistributions in binary form must reproduce the above 9 # * Redistributions in binary form must reproduce the above
10 # copyright notice, this list of conditions and the following disclaimer 10 # copyright notice, this list of conditions and the following disclaimer
(...skipping 17 matching lines...) Expand all
28 28
29 """Unit test for text_style.py.""" 29 """Unit test for text_style.py."""
30 30
31 import unittest 31 import unittest
32 32
33 import text as text_style 33 import text as text_style
34 from text import TextChecker 34 from text import TextChecker
35 35
36 36
37 class TextStyleTestCase(unittest.TestCase): 37 class TextStyleTestCase(unittest.TestCase):
38
38 """TestCase for text_style.py""" 39 """TestCase for text_style.py"""
39 40
40 def assertNoError(self, lines): 41 def assertNoError(self, lines):
41 """Asserts that the specified lines has no errors.""" 42 """Asserts that the specified lines has no errors."""
42 self.had_error = False 43 self.had_error = False
43 44
44 def error_for_test(line_number, category, confidence, message): 45 def error_for_test(line_number, category, confidence, message):
45 """Records if an error occurs.""" 46 """Records if an error occurs."""
46 self.had_error = True 47 self.had_error = True
47 48
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 """Tests TextChecker class.""" 80 """Tests TextChecker class."""
80 81
81 def mock_handle_style_error(self): 82 def mock_handle_style_error(self):
82 pass 83 pass
83 84
84 def test_init(self): 85 def test_init(self):
85 """Test __init__ constructor.""" 86 """Test __init__ constructor."""
86 checker = TextChecker("foo.txt", self.mock_handle_style_error) 87 checker = TextChecker("foo.txt", self.mock_handle_style_error)
87 self.assertEqual(checker.file_path, "foo.txt") 88 self.assertEqual(checker.file_path, "foo.txt")
88 self.assertEqual(checker.handle_style_error, self.mock_handle_style_erro r) 89 self.assertEqual(checker.handle_style_error, self.mock_handle_style_erro r)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698