mirror of
https://github.com/django/daphne.git
synced 2025-06-24 23:13:14 +03:00
9 lines
281 B
Python
9 lines
281 B
Python
from __future__ import unicode_literals
|
|
from asgiref.conformance import ConformanceTestCase
|
|
from ..database_layer import DatabaseChannelLayer
|
|
|
|
|
|
class DatabaseLayerTests(ConformanceTestCase):
|
|
channel_layer = DatabaseChannelLayer(expiry=1, group_expiry=3)
|
|
expiry_delay = 2.1
|