您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

test_controllers.py 319B

123456789
  1. from unittest.mock import patch
  2. from app_fixture import mock_user # type: ignore
  3. def test_post_requires_login(app):
  4. with app.test_client() as client, patch("flask_login.utils._get_user", mock_user):
  5. response = client.get("/console/api/data-source/integrates")
  6. assert response.status_code == 200