AkurAI Build
Menu

cosmic-mobile

public

Latest change d22956783f74f68f3d7eff1dd31f885aaf0fbe3e - Checkpoint BúiOS prototype and document clean-worktree workflow by AkurAI Build

from pathlib import Path
import unittest

class Home(unittest.TestCase):
    def test_no_launcher_clutter(self):
        source = Path('src/main.rs').read_text()
        self.assertNotIn('Make room for what matters.', source)
        self.assertNotIn('Button::new("Running apps")', source)
        self.assertNotIn('.size(76.)', source)
        self.assertIn('Show clock widget', source)

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