mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-03 22:19:16 +02:00
7 lines
276 B
Python
7 lines
276 B
Python
def test_channel(factories, now):
|
|
channel = factories["audio.Channel"]()
|
|
assert channel.artist is not None
|
|
assert channel.actor is not None
|
|
assert channel.attributed_to is not None
|
|
assert channel.library is not None
|
|
assert channel.creation_date >= now
|