mirror of
https://github.com/dgtlmoon/changedetection.io.git
synced 2026-05-01 07:10:34 +00:00
16 lines
443 B
Python
16 lines
443 B
Python
from flask import url_for
|
|
|
|
from changedetectionio.tests.util import live_server_setup
|
|
|
|
|
|
def test_checkplugins_registered(live_server, client):
|
|
live_server_setup(live_server)
|
|
res = client.get(
|
|
url_for("settings.settings_page")
|
|
)
|
|
assert res.status_code == 200
|
|
# Should be registered in the info table
|
|
assert b'<td>Webpage Text/HTML, JSON and PDF changes' in res.data
|
|
assert b'<td>text_json_diff' in res.data
|
|
|