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