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

Unified Diff: appengine/predator/app/common/model/test/crash_analysis_test.py

Issue 2447253002: [Findit & Predator] Code reorg of Findit. (Closed)
Patch Set: Clean up. Created 4 years, 1 month 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/predator/app/common/model/test/crash_analysis_test.py
diff --git a/appengine/predator/app/common/model/test/crash_analysis_test.py b/appengine/predator/app/common/model/test/crash_analysis_test.py
new file mode 100644
index 0000000000000000000000000000000000000000..3b26388ed79ab6b1a1b3720675cced294b9ba56c
--- /dev/null
+++ b/appengine/predator/app/common/model/test/crash_analysis_test.py
@@ -0,0 +1,9 @@
+import unittest
+
+from common.model import crash_analysis
+
+
+class CrashAnalysisTest(unittest.TestCase):
+ def testSignature(self):
+ analysis = crash_analysis.CrashAnalysis(signature='sig')
+ self.assertEqual('sig', analysis.signature)

Powered by Google App Engine
This is Rietveld 408576698