Commit c14459c3 by Chris Jerdonek

Addressed issue #73: spec tests now excluded by default.

parent fe84cb12
...@@ -71,6 +71,7 @@ To include tests from the mustache spec_ in your test runs: :: ...@@ -71,6 +71,7 @@ To include tests from the mustache spec_ in your test runs: ::
git submodule init git submodule init
git submodule update git submodule update
nosetests -i spec
Mailing List Mailing List
......
# coding: utf-8 # coding: utf-8
""" """
Tests the mustache spec test cases. Creates a unittest.TestCase for the tests defined in the mustache spec.
We did not call this file something like "test_spec.py" to avoid matching
nosetests's default regular expression "(?:^|[\b_\./-])[Tt]est".
This allows us to exclude the spec test cases by default when running
nosetests. To include the spec tests, one can use the following option,
for example--
nosetests -i spec
""" """
import glob import glob
import os.path import os.path
import sys
import unittest import unittest
import yaml import yaml
......
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