Unit Tests
- After renaming 'template.py' to 'template.t', the failing and skipped tests within as examples are now affecting the totals because all *.t files are run. Commented out tests.
This commit is contained in:
@@ -34,9 +34,9 @@ class TestCase(unittest.TestCase):
|
|||||||
|
|
||||||
def testFailOther(self):
|
def testFailOther(self):
|
||||||
"""Nothing to do with Copyright"""
|
"""Nothing to do with Copyright"""
|
||||||
self.assertEqual("I like to code", "I like\nto code\n")
|
# self.assertEqual("I like to code", "I like\nto code\n")
|
||||||
|
|
||||||
@unittest.skipIf(1 != 0, "This machine has sane logic")
|
# @unittest.skipIf(1 != 0, "This machine has sane logic")
|
||||||
def testSkipped(self):
|
def testSkipped(self):
|
||||||
"""Test all logic of the world"""
|
"""Test all logic of the world"""
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user