AkurAI Build
Menu

cosmic-mobile

public

Latest change 975a13e7afc3dea7e34c04e77e3879cf635a1bf7 - Upgrade system app components to iOS design language by AkurAI Build

from pathlib import Path
import unittest

class StorePage(unittest.TestCase):
    def test_store_is_reachable_and_honest_about_missing_registry(self):
        source = (Path(__file__).resolve().parents[1] / 'src/main.rs').read_text()
        for marker in ['9 => self.page = Page::Store', 'Page::Store => "App Store"', '"Registry", "Not connected"', 'Installed packages', '"app store"']:
            self.assertTrue(marker in source, marker)

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