资源简介
代码片段和文件信息
import os
import unittest
from sendgrid.helpers.inbound.config import Config
from sendgrid.helpers.inbound.app import app
class UnitTests(unittest.TestCase):
def setUp(self):
self.config = Config()
app.testing = True
self.tester = app.test_client(self)
def test_up_and_running(self):
response = self.tester.get(‘/‘)
self.assertEqual(response.status_code 200)
def test_used_port_true(self):
if self.config.debug_mode:
port = int(os.environ.get(“PORT“ self.config.port))
self.assertEqual(port self.config.port)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1500 2020-03-05 14:08 test_sendgrid\prism.sh
文件 45 2020-03-05 14:08 test_sendgrid\requirements.txt
文件 624 2020-03-05 14:08 test_sendgrid\test_app.py
文件 1985 2020-03-05 14:08 test_sendgrid\test_config.py
文件 2344 2020-03-05 14:08 test_sendgrid\test_email.py
文件 1503 2020-03-05 14:08 test_sendgrid\test_inbound_send.py
文件 40581 2020-03-05 14:08 test_sendgrid\test_mail_helpers.py
文件 469 2020-03-05 14:08 test_sendgrid\test_parse.py
文件 2072 2020-03-05 14:08 test_sendgrid\test_project.py
文件 90094 2020-03-05 14:08 test_sendgrid\test_sendgrid.py
文件 1621 2020-03-05 14:08 test_sendgrid\test_spam_check.py
文件 2933 2020-03-05 14:08 test_sendgrid\test_stats.py
文件 2061 2020-03-05 14:08 test_sendgrid\test_unassigned.py
文件 0 2020-03-05 14:08 test_sendgrid\__init__.py
目录 0 2020-03-05 14:08 test_sendgrid
----------- --------- ---------- ----- ----
147832 15
评论
共有 条评论