Skip to content

Commit 663f8c2

Browse files
author
Dan Fairs
committed
- Fix typo in templates causing a broken import in generated tests file
- Version bump and history note
1 parent 8737bf6 commit 663f8c2

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

docs/HISTORY.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Changelog
22
=========
33

4+
0.3.1
5+
-----
6+
7+
* Fixed broken import in generated tests.py in apps
8+
49
0.3.0
510
-----
611

fez/djangoskel/templates/django_app/+project+/tests.py_tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from djangp.test import TestCase
1+
from django.test import TestCase
22

33
class AppTestCase(TestCase):
44
"""

fez/djangoskel/templates/django_namespace_app/+namespace_package+/+package+/tests.py_tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from djangp.test import TestCase
1+
from django.test import TestCase
22

33
class AppTestCase(TestCase):
44
"""

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup, find_packages
22
import os
33

4-
version = '0.3.0'
4+
version = '0.3.1'
55

66
setup(name='fez.djangoskel',
77
version=version,

0 commit comments

Comments
 (0)