X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/96d13ead60e0c798146ffaadd951877a8077ad9d..9c4c7a3325eedfcff4bb3550218b1f47275402b0:/apps/piston/tests.py diff --git a/apps/piston/tests.py b/apps/piston/tests.py deleted file mode 100644 index 99f7028fd..000000000 --- a/apps/piston/tests.py +++ /dev/null @@ -1,44 +0,0 @@ -# Django imports -from django.core import mail -from django.contrib.auth.models import User -from django.conf import settings - -# Piston imports -from test import TestCase -from models import Consumer - -class ConsumerTest(TestCase): - fixtures = ['models.json'] - - def setUp(self): - self.consumer = Consumer() - self.consumer.name = "Piston Test Consumer" - self.consumer.description = "A test consumer for Piston." - self.consumer.user = User.objects.get(pk=3) - self.consumer.generate_random_codes() - - def test_create_pending(self): - """ Ensure creating a pending Consumer sends proper emails """ - # If it's pending we should have two messages in the outbox; one - # to the consumer and one to the site admins. - if len(settings.ADMINS): - self.assertEquals(len(mail.outbox), 2) - else: - self.assertEquals(len(mail.outbox), 1) - - expected = "Your API Consumer for example.com is awaiting approval." - self.assertEquals(mail.outbox[0].subject, expected) - - def test_delete_consumer(self): - """ Ensure deleting a Consumer sends a cancel email """ - - # Clear out the outbox before we test for the cancel email. - mail.outbox = [] - - # Delete the consumer, which should fire off the cancel email. - self.consumer.delete() - - self.assertEquals(len(mail.outbox), 1) - expected = "Your API Consumer for example.com has been canceled." - self.assertEquals(mail.outbox[0].subject, expected) -