9 lines
263 B
Python
9 lines
263 B
Python
|
from tests.utils import bot, CHANNEL, OWNER, SENDER
|
||
|
|
||
|
|
||
|
def test_topic_duration_not_ended(bot):
|
||
|
bot.on_public_message(CHANNEL, OWNER, "!start")
|
||
|
bot.on_public_message(CHANNEL, OWNER, "## collective topic")
|
||
|
assert bot.review.current_topic.duration != ""
|
||
|
|