Renamed a test file that has no tests.

This commit is contained in:
lobziik 2015-11-07 16:47:36 +01:00 committed by Tim Graham
parent 0115f9faa5
commit 7a48f9abf2
3 changed files with 2 additions and 2 deletions

View file

@ -0,0 +1,19 @@
from __future__ import unicode_literals
from django import forms
from .models import Author
class AuthorForm(forms.ModelForm):
name = forms.CharField()
slug = forms.SlugField()
class Meta:
model = Author
fields = ['name', 'slug']
class ContactForm(forms.Form):
name = forms.CharField()
message = forms.CharField(widget=forms.Textarea)