Commit 9b00a932 by Chris Jerdonek

Test runner no longer errors out if spec tests not found.

parent e92e9b3a
...@@ -31,15 +31,22 @@ from pystache.tests.common import AssertStringMixin, SPEC_TEST_DIR ...@@ -31,15 +31,22 @@ from pystache.tests.common import AssertStringMixin, SPEC_TEST_DIR
spec_paths = glob.glob(os.path.join(SPEC_TEST_DIR, '*.json')) spec_paths = glob.glob(os.path.join(SPEC_TEST_DIR, '*.json'))
if len(spec_paths) == 0:
raise Exception("""Spec tests not found in: %s # This test case lets us alert the user that spec tests are missing.
Consult the README file on how to add the spec tests.""" % repr(SPEC_TEST_DIR)) class CheckSpecTestsFound(unittest.TestCase):
def test_spec_tests_exist(self):
if len(spec_paths) > 0:
return
raise Exception("Spec tests not found in: %s\n "
"Consult the README file on how to add the Mustache spec tests." % repr(SPEC_TEST_DIR))
# TODO: give this a name better than MustacheSpec. # TODO: give this a name better than MustacheSpec.
class MustacheSpec(unittest.TestCase, AssertStringMixin): class MustacheSpec(unittest.TestCase, AssertStringMixin):
pass pass
def buildTest(testData, spec_filename): def buildTest(testData, spec_filename):
name = testData['name'] name = testData['name']
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment