mirror of
https://github.com/django/django.git
synced 2024-12-28 03:55:50 +00:00
d4da08375b
Added ability to use receiver decorator in the following way: @receiver([post_save, post_delete], sender=MyModel) def signals_receiver(sender, **kwargs): ...
9 lines
187 B
Python
9 lines
187 B
Python
"""
|
|
Unit-tests for the dispatch project
|
|
"""
|
|
|
|
from __future__ import absolute_import
|
|
|
|
from .test_dispatcher import DispatcherTests, ReceiverTestCase
|
|
from .test_saferef import SaferefTests
|