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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 import unittest
2
3 from common.model import crash_analysis
4
5
6 class CrashAnalysisTest(unittest.TestCase):
7 def testSignature(self):
8 analysis = crash_analysis.CrashAnalysis(signature='sig')
9 self.assertEqual('sig', analysis.signature)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698