1
0

fix: add real-time data disclaimer to welcome message (#304)

This commit is contained in:
2026-03-18 16:56:21 -04:00
parent 96e7961a0e
commit f5a570c56d
4 changed files with 25 additions and 3 deletions

View File

@@ -0,0 +1,14 @@
"""Tests for the welcome message module."""
from timmy.welcome import WELCOME_MESSAGE
class TestWelcomeMessage:
def test_welcome_message_contains_disclaimer(self):
assert "real-time" in WELCOME_MESSAGE.lower()
def test_welcome_message_mentions_weather(self):
assert "weather" in WELCOME_MESSAGE.lower()
def test_welcome_message_contains_greeting(self):
assert "Mission Control initialized" in WELCOME_MESSAGE