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:
Paul Beckingham 2014-07-04 11:00:44 -04:00
parent 0f38f1decd
commit ca9683d912

View file

@ -34,9 +34,9 @@ class TestCase(unittest.TestCase):
def testFailOther(self):
"""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):
"""Test all logic of the world"""