Added multi-domain capabilities

This commit is contained in:
Raphael Michel
2015-10-18 14:01:28 +02:00
parent d7d6e74c04
commit 3fa0cfb077
38 changed files with 720 additions and 141 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ class CheckoutTestCase(TestCase):
self._set_session('email', 'admin@localhost')
def test_empty_cart(self):
response = self.client.get('/%s/%s/checkout/' % (self.orga.slug, self.event.slug), follow=True)
response = self.client.get('/%s/%s/checkout/start' % (self.orga.slug, self.event.slug), follow=True)
self.assertRedirects(response, '/%s/%s/' % (self.orga.slug, self.event.slug),
target_status_code=200)