Files
Timmy-time-dashboard/tests/timmy/test_welcome.py
Kimi Agent f5a570c56d
All checks were successful
Tests / lint (push) Successful in 13s
Tests / test (push) Successful in 1m15s
fix: add real-time data disclaimer to welcome message (#304)
2026-03-18 16:56:21 -04:00

15 lines
450 B
Python

"""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