You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
579 B
23 lines
579 B
from disco.types.channel import Channel, ChannelType
|
|
|
|
|
|
def test_deprecated_nsfw_channel():
|
|
channel = Channel(
|
|
name='nsfw-testing',
|
|
type=ChannelType.GUILD_TEXT)
|
|
assert channel.is_nsfw
|
|
|
|
channel = Channel(
|
|
name='nsfw-testing',
|
|
type=ChannelType.GUILD_VOICE)
|
|
assert not channel.is_nsfw
|
|
|
|
channel = Channel(
|
|
name='nsfw_testing',
|
|
type=ChannelType.GUILD_TEXT)
|
|
assert not channel.is_nsfw
|
|
|
|
|
|
def test_nsfw_channel():
|
|
channel = Channel(name='test', nsfw=True, type=ChannelType.GUILD_TEXT)
|
|
assert channel.is_nsfw
|
|
|