Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Awesome (0.08 sec)

  1. tests/test_tutorial/test_settings/test_app03.py

        return main_mod
    
    
    def test_settings(main_mod: ModuleType, monkeypatch: MonkeyPatch):
        monkeypatch.setenv("ADMIN_EMAIL", "******@****.***")
        settings = main_mod.get_settings()
        assert settings.app_name == "Awesome API"
        assert settings.admin_email == "******@****.***"
        assert settings.items_per_user == 50
    
    
    def test_endpoint(main_mod: ModuleType, monkeypatch: MonkeyPatch):
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  2. tests/test_tutorial/test_settings/test_tutorial001.py

    
    def test_settings(app):
        client = TestClient(app)
        response = client.get("/info")
        assert response.status_code == 200, response.text
        assert response.json() == {
            "app_name": "Awesome API",
            "admin_email": "******@****.***",
            "items_per_user": 50,
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 690 bytes
    - Viewed (0)
  3. scripts/translate.py

            $ mkdir code
            // Enter into that code directory
            $ cd code
            // Create a directory for this project
            $ mkdir awesome-project
            // Enter into that project directory
            $ cd awesome-project
            ```
            »»»
    
        Result (German):
    
            «««
            ```console
            // Gehe zum Home-Verzeichnis
            $ cd
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 19:05:53 UTC 2025
    - 34.1K bytes
    - Viewed (0)
Back to top