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

Unified Diff: mojo/devtools/common/devtoolslib/shell_arguments_unittest.py

Issue 1268713005: Unify method name casing in devtools. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 4 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
« no previous file with comments | « mojo/devtools/common/devtoolslib/shell_arguments.py ('k') | mojo/devtools/common/mojo_run » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/devtools/common/devtoolslib/shell_arguments_unittest.py
diff --git a/mojo/devtools/common/devtoolslib/shell_arguments_unittest.py b/mojo/devtools/common/devtoolslib/shell_arguments_unittest.py
index d1b5f37720d7a2ce195b02177b56361bdaf448db..f86b163ce8bc495285668c07de5fe038bf1821b8 100644
--- a/mojo/devtools/common/devtoolslib/shell_arguments_unittest.py
+++ b/mojo/devtools/common/devtoolslib/shell_arguments_unittest.py
@@ -17,7 +17,7 @@ from devtoolslib import shell_arguments
class AppendToArgumentTest(unittest.TestCase):
"""Tests AppendToArgument()."""
- def testAppendToEmpty(self):
+ def test_append_to_empty(self):
arguments = []
key = '--something='
value = 'val'
@@ -25,7 +25,7 @@ class AppendToArgumentTest(unittest.TestCase):
self.assertEquals(expected_result, shell_arguments.append_to_argument(
arguments, key, value))
- def testAppendToNonEmpty(self):
+ def test_append_to_non_empty(self):
arguments = ['--other']
key = '--something='
value = 'val'
@@ -33,7 +33,7 @@ class AppendToArgumentTest(unittest.TestCase):
self.assertEquals(expected_result, shell_arguments.append_to_argument(
arguments, key, value))
- def testAppendToExisting(self):
+ def test_append_to_existing(self):
arguments = ['--something=old_val']
key = '--something='
value = 'val'
« no previous file with comments | « mojo/devtools/common/devtoolslib/shell_arguments.py ('k') | mojo/devtools/common/mojo_run » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698