Order creation API: Fire pretix.event.order.paid signal

This commit is contained in:
Raphael Michel
2021-05-03 13:03:01 +02:00
parent ecd97fc6ce
commit 02ce2fb5cf
2 changed files with 14 additions and 1 deletions

View File

@@ -3133,6 +3133,7 @@ def test_order_create_free(token_client, organizer, event, item, quota, question
assert p.provider == "free"
assert p.amount == o.total
assert p.state == "confirmed"
assert o.all_logentries().count() == 2
@pytest.mark.django_db