1
0
This repository has been archived on 2026-03-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Timmy-time-dashboard/tests/timmy/test_welcome.py

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