diff options
author | Marc Tamlyn <marc.tamlyn@gmail.com> | 2012-08-03 10:42:20 +0100 |
---|---|---|
committer | Marc Tamlyn <marc.tamlyn@gmail.com> | 2012-08-03 10:42:20 +0100 |
commit | 9fc1d90c7db78d95b9c3b9a8d0329b472b8a4280 (patch) | |
tree | d0a366e7d4a0d5bec761ff7418e6f59cfbf43805 /wkhtmltopdf/tests/templates | |
parent | dc9f1fb46f587f2b8dbbfc440a72944b183c0fcd (diff) | |
download | django-wkhtmltopdf-9fc1d90c7db78d95b9c3b9a8d0329b472b8a4280.tar.gz django-wkhtmltopdf-9fc1d90c7db78d95b9c3b9a8d0329b472b8a4280.tar.bz2 django-wkhtmltopdf-9fc1d90c7db78d95b9c3b9a8d0329b472b8a4280.zip |
Move tests into wkhtmltopdf.tests.*
Fixes #11.
Diffstat (limited to 'wkhtmltopdf/tests/templates')
-rw-r--r-- | wkhtmltopdf/tests/templates/footer.html | 2 | ||||
-rw-r--r-- | wkhtmltopdf/tests/templates/sample.html | 7 |
2 files changed, 9 insertions, 0 deletions
diff --git a/wkhtmltopdf/tests/templates/footer.html b/wkhtmltopdf/tests/templates/footer.html new file mode 100644 index 0000000..3ae09cb --- /dev/null +++ b/wkhtmltopdf/tests/templates/footer.html @@ -0,0 +1,2 @@ +MEDIA_URL = {{ MEDIA_URL }} +STATIC_URL = {{ STATIC_URL }} diff --git a/wkhtmltopdf/tests/templates/sample.html b/wkhtmltopdf/tests/templates/sample.html new file mode 100644 index 0000000..3dfbdbb --- /dev/null +++ b/wkhtmltopdf/tests/templates/sample.html @@ -0,0 +1,7 @@ +<html> + <head> + </head> + <body> + <h1>{{ title }}</h1> + </body> +</html> |