#!/usr/bin/env python3 """Integration test: Symbiont web module -> Dendrite.""" import sys sys.path.insert(0, "/data/symbiont") from symbiont.web import fetch_page, health h = health() print(f"Dendrite: {h['status']} | uptime: {h['uptime']}s | sessions: {h['sessions']}") page = fetch_page("https://httpbin.org/html", format="text") print(f"Fetched: {page['title']} ({len(page['content'])} chars)") print(f"Preview: {page['content'][:200]}")