mirror of
https://github.com/pretix/pretix.git
synced 2026-05-05 15:14:04 +00:00
20 lines
453 B
Python
20 lines
453 B
Python
import logging
|
|
|
|
from pretix.base.payment import BasePaymentProvider
|
|
|
|
logger = logging.getLogger('tests.testdummy.ticketoutput')
|
|
|
|
|
|
class DummyPaymentProvider(BasePaymentProvider):
|
|
identifier = 'testdummy'
|
|
verbose_name = 'Test dummy'
|
|
|
|
def order_pending_render(self, request, order) -> str:
|
|
pass
|
|
|
|
def payment_is_valid_session(self, request) -> bool:
|
|
pass
|
|
|
|
def checkout_confirm_render(self, request) -> str:
|
|
pass
|