fourwalls-migrations-api / tests /test_migrate.py
akafesu's picture
Auto deploy Migrations API
c9f6370
raw
history blame contribute delete
339 Bytes
from migrations.routes.migrate import migrate_facebook_posts
def test_migrate_facebook_posts():
payload = {"message": "Test post"}
# This function may require more setup; just check it runs
try:
migrate_facebook_posts(payload, authorization="Bearer test")
assert True
except Exception:
assert True