mirror of
https://github.com/django/daphne.git
synced 2025-10-27 22:11:03 +03:00
7 lines
246 B
Python
7 lines
246 B
Python
from __future__ import unicode_literals
|
|
from asgiref.conformance import make_tests
|
|
from ..database_layer import DatabaseChannelLayer
|
|
|
|
channel_layer = DatabaseChannelLayer(expiry=1)
|
|
DatabaseLayerTests = make_tests(channel_layer, expiry_delay=2.1)
|