Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(64)

Unified Diff: tests/test_addition.py

Issue 6850052: Initial project structure, mostly testing.
Patch Set: Initial project structure, mostly testing. Created 12 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/functional-noop.test ('k') | tests/unit.test » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/test_addition.py
=== added file 'tests/test_addition.py'
--- tests/test_addition.py 1970-01-01 00:00:00 +0000
+++ tests/test_addition.py 2012-11-21 13:49:15 +0000
@@ -0,0 +1,13 @@
+#!/usr/bin/env python2
+
+import sys
+import unittest
+
+
+class PassingTest(unittest.TestCase):
+ def test_addition(self):
+ self.assertEqual(1+1, 2)
+
+
+if __name__ == '__main__':
+ sys.exit(unittest.main())
« no previous file with comments | « tests/functional-noop.test ('k') | tests/unit.test » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b