club: fix SellingFormBase import

This commit is contained in:
Antoine Bartuccio 2019-05-21 10:26:29 +02:00
parent 9f2a0deeb9
commit 275b89cdf0
Signed by: klmp200
GPG Key ID: E7245548C53F904B
2 changed files with 21 additions and 1 deletions

View File

@ -691,3 +691,23 @@ class MailingFormTest(TestCase):
self.assertNotContains(response, "comunity@git.an")
self.assertNotContains(response, "richard@git.an")
self.assertNotContains(response, "krophil@git.an")
class ClubSellingViewTest(TestCase):
"""
Perform basics tests to ensure that the page is available
"""
def setUp(self):
call_command("populate")
self.ae = Club.objects.filter(unix_name="ae").first()
def test_page_not_internal_error(self):
"""
Test that the page does not return and internal error
"""
self.client.login(username="skia", password="plop")
response = self.client.get(
reverse("club:club_sellings", kwargs={"club_id": self.ae.id})
)
self.assertFalse(response.status_code == 500)

View File

@ -59,7 +59,7 @@ from com.views import (
)
from club.models import Club, Membership, Mailing, MailingSubscription
from club.forms import MailingForm, ClubEditForm, ClubMemberForm
from club.forms import MailingForm, ClubEditForm, ClubMemberForm, SellingsFormBase
class ClubTabsMixin(TabedViewMixin):