AkurAI Build
Menu

cosmic-mobile

public

Latest change 93a533a0f7d91047c27e088fff06958ac8443511 - Explain empty core app histories without fake records by AkurAI Build

from pathlib import Path
import unittest

class EmptyStates(unittest.TestCase):
    def test_apps_explain_empty_history(self):
        source = (Path(__file__).resolve().parents[1] / 'src/main.rs').read_text()
        for label in ['No calls yet', 'No contacts yet', 'No events yet', 'No messages yet']:
            self.assertTrue(label in source, label)

if __name__ == '__main__':
    unittest.main()