This commit is contained in:
David Cramer 2012-01-30 00:32:51 -08:00
parent 46f42f9e87
commit 887e79be32
2 changed files with 3 additions and 1 deletions

View File

@ -1 +1 @@
VERSION = 1.0
VERSION = 1.0

View File

@ -5,6 +5,7 @@ from celery.tests.utils import with_eager_tasks
from raven.base import Client
from raven.contrib.celery import make_celery_client
class TempStoreClient(Client):
def __init__(self, **kwargs):
self.events = []
@ -13,6 +14,7 @@ class TempStoreClient(Client):
def send(self, **kwargs):
self.events.append(kwargs)
class ClientTest(TestCase):
def setUp(self):
self.client = make_celery_client(TempStoreClient())