Unit Tests should create enabled events

This commit is contained in:
Raphael Michel
2016-02-23 08:58:39 +01:00
parent b1715fc442
commit c28b40a118
9 changed files with 15 additions and 10 deletions

View File

@@ -19,7 +19,8 @@ class CheckoutTestCase(TestCase):
self.event = Event.objects.create(
organizer=self.orga, name='30C3', slug='30c3',
date_from=datetime.datetime(2013, 12, 26, tzinfo=datetime.timezone.utc),
plugins='pretix.plugins.stripe,pretix.plugins.banktransfer'
plugins='pretix.plugins.stripe,pretix.plugins.banktransfer',
live=True
)
self.category = ItemCategory.objects.create(event=self.event, name="Everything", position=0)
self.quota_tickets = Quota.objects.create(event=self.event, name='Tickets', size=5)