Added a testcase for #363. This bug was fixed along the way.
[jinja2.git] / Makefile
1 test:
2         cd tests; nosetests -v
3
4 2to3:
5         rm -rf py3k
6         mkdir py3k
7         cp -R jinja2 py3k
8         cp -R tests py3k
9         2to3 jinja2 tests > py3k/convert.patch
10         cd py3k; patch -p0 < convert.patch
11
12 .PHONY: test