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

Unified Diff: appengine/findit/common/test/diff_test.py

Issue 2344443005: [Findit] Factoring the gitiles (etc) stuff out into its own directory (Closed)
Patch Set: reordering imports Created 4 years, 2 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: appengine/findit/common/test/diff_test.py
diff --git a/appengine/findit/common/test/diff_test.py b/appengine/findit/common/test/diff_test.py
deleted file mode 100644
index 4c5f946aa30b636e3122f7a0cb8ecd3c178e00c2..0000000000000000000000000000000000000000
--- a/appengine/findit/common/test/diff_test.py
+++ /dev/null
@@ -1,17 +0,0 @@
-# Copyright 2014 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import unittest
-
-from common import diff
-from common.diff import ChangeType
-
-class DiffTest(unittest.TestCase):
- def testKnownChangeTypes(self):
- for change_type in [ChangeType.ADD, ChangeType.DELETE, ChangeType.MODIFY,
- ChangeType.COPY, ChangeType.RENAME]:
- self.assertTrue(diff.IsKnownChangeType(change_type))
-
- def testUnknownChangeType(self):
- self.assertFalse(diff.IsKnownChangeType('unknown change type'))
« no previous file with comments | « appengine/findit/common/test/dependency_test.py ('k') | appengine/findit/common/test/git_repository_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698