Mobilizon-Reshare-condividi.../tests/models/test_publisher.py
Simone Robutti 2c8063cf4a
rename everything (#50)
* fixed visualization

* simplified tests

* split into files

* refactored test expected publications

* split update tests

* expanded specifications and tests

* added event_status window tests

* fixed 'all' command

* renamed everything

* fixed uppercase
2021-08-16 10:49:52 +02:00

12 lines
363 B
Python

import pytest
from mobilizon_reshare.models.publisher import Publisher
@pytest.mark.asyncio
async def test_publisher_create(publisher_model_generator):
publisher_model = publisher_model_generator()
await publisher_model.save()
publisher_db = await Publisher.filter(name="publisher_1").first()
assert publisher_db.account_ref == "account_ref_1"