summaryrefslogtreecommitdiff
path: root/pystache
Commit message (Collapse)AuthorAgeFilesLines
* Only pull in 2to3-related modules when running Python 3.x.Chris Jerdonek2012-04-211-4/+7
|
* The test script now converts text doctest files to Python 3 when needed.Chris Jerdonek2012-04-211-3/+42
|
* Fixed a bug that affected the processing of ~lambdas.json (but not YAML).Chris Jerdonek2012-04-211-13/+28
|
* Moved test_mustachespec.py to spectesting.py since it no longer contains ↵Chris Jerdonek2012-04-212-2/+1
| | | | unit tests.
* The pystache-tests script now accepts a spec test directory argument.Chris Jerdonek2012-04-212-5/+16
|
* Refactored pystache/tests/test_mustachespec.py to expose get_spec_tests().Chris Jerdonek2012-04-212-80/+134
|
* Renamed get_module_doctests() to get_doctests().Chris Jerdonek2012-04-212-5/+10
|
* The project directory can now be passed to pystache-test (for doctest purposes).Chris Jerdonek2012-04-212-8/+15
|
* Updated a comment in tests/common.py.Chris Jerdonek2012-04-211-2/+1
|
* Deleted a trailing space.Chris Jerdonek2012-04-211-1/+1
|
* Added extra lineChris Jerdonek2012-04-201-0/+1
|
* Added a hack to get around Python bug #7559: http://bugs.python.org/issue7559Chris Jerdonek2012-04-202-2/+20
|
* Adjusted comments in pystache/tests/main.py.Chris Jerdonek2012-04-201-18/+10
|
* Replaced the TestHarness class with a run_tests() function.Chris Jerdonek2012-04-202-35/+27
|
* Removed test_doctests.py (and use of the load_tests protocol).Chris Jerdonek2012-04-203-48/+13
|
* Renamed SOURCE_DIR to PACKAGE_DIR.Chris Jerdonek2012-04-203-17/+12
|
* Moved code from load_tests() to new doctesting module.Chris Jerdonek2012-04-203-60/+82
|
* Stubbed out _PystacheTestProgram.runTests().Chris Jerdonek2012-04-201-3/+11
|
* Finished refactoring pystache/tests/main.py prior to add doctest support, etc.Chris Jerdonek2012-04-201-17/+22
|
* Started refactoring pystache/tests/main.py and stubbed out _PystacheTestProgram.Chris Jerdonek2012-04-201-48/+63
|
* Added TODO notes to pystache/tests/main.py.Chris Jerdonek2012-04-201-0/+15
|
* Updated pystache/commands/test.py to use the new test-discovery code.Chris Jerdonek2012-04-161-11/+5
|
* Added a TODO to pystache/tests/main.py.Chris Jerdonek2012-04-161-0/+1
|
* Added a TODO to pystache/context.py to use EAFP instead of a global variable.Chris Jerdonek2012-04-161-0/+4
|
* Added a Tester class to do test discovery without using nose.Chris Jerdonek2012-04-161-0/+113
|
* Added a TODO to the package __init__ about importing from pystache.init.Chris Jerdonek2012-04-161-0/+2
|
* Added a TODO to pystache/__init__.py about "from pystache import *".Chris Jerdonek2012-04-151-0/+4
|
* Added a TODO to pystache/commands/test.py about nose's defaultTest keyword ↵Chris Jerdonek2012-04-151-0/+2
| | | | argument.
* Some updates to the test code for moving the examples folder.Chris Jerdonek2012-04-153-6/+5
|
* Moved examples/ to pystache/tests/examples/.Chris Jerdonek2012-04-1539-0/+226
|
* Made the argument to pystache.command.render's main() function optional.Chris Jerdonek2012-04-141-2/+7
|
* Stubbed out a stand-alone script command.Chris Jerdonek2012-04-143-12/+48
| | | | | | | | The eventual goal is to have a test script that behaves well with tox. Using a stand-alone test script that we control instead of an out-of-the-box command-line script like nosetests or Distribute's test should give us more flexibility in dealing with any idiosyncracies that occur with tox.
* Moved commands.py into a commands sub-package.Chris Jerdonek2012-04-133-1/+1
|
* Make ImportErrors that occur while loading doctests easier to diagnose.Chris Jerdonek2012-04-131-1/+10
|
* Spacing.Chris Jerdonek2012-04-111-1/+0
|
* Cleaned up code around html.escape() in pystache.defaults.Chris Jerdonek2012-04-111-15/+8
|
* Merge branch 'master' into 'development': after releasing v0.5.0 to PyPIChris Jerdonek2012-04-111-1/+1
|\ | | | | | | | | | | Conflicts: pystache/init.py setup.py
| * Bump version from 0.5.0-rc to 0.5.0 prior to PyPI release: issue #101v0.5.0Chris Jerdonek2012-04-101-1/+3
| |
* | Tests now pass with Python 3.1.Chris Jerdonek2012-04-102-2/+9
| |
* | Got tox working with Python 2.4 through 3.2 (2.4, 2.5, 2.6, 2.7, 3.2).Chris Jerdonek2012-04-101-1/+2
| |
* | Eliminated the nosetests hack around the load_tests protocol function.Chris Jerdonek2012-04-091-14/+8
| |
* | Addressed TODO to rename reader to loader in test_loader.py.Chris Jerdonek2012-04-081-25/+24
| |
* | Changed the deprecated (in Python 3) assertNotEquals to assertNotEqual ↵Chris Jerdonek2012-04-082-2/+1
| | | | | | | | everywhere.
* | All unit tests except for spec tests now work in both Python 2/3.Chris Jerdonek2012-04-085-52/+70
| |
* | More Python 3 unit test fixes; README doctests also now working.Chris Jerdonek2012-04-085-9/+27
| |
* | More unit tests for Python 3: type-checking in Renderer.render() for byte ↵Chris Jerdonek2012-04-082-7/+20
| | | | | | | | strings.
* | Made a test_context pass in Python 3.Chris Jerdonek2012-04-081-22/+19
| |
* | Made 6 more tests pass in Python 3 (and simultaneously, Python 2)..Chris Jerdonek2012-04-082-0/+18
| |
* | Exposed an html_escape function in tests.common for consistent Python 2/3 ↵Chris Jerdonek2012-04-082-1/+26
| | | | | | | | testing.
* | Fixed the built-in type integer unit test for Python 3.Chris Jerdonek2012-04-081-1/+1
| |