mirror of
https://github.com/pretix/pretix.git
synced 2026-05-03 14:54:04 +00:00
Allow to print multiple badges on one page (#1380)
* Allow to print multiple badges on one page * Fix test * Add more sizes * Add A4 sizes
This commit is contained in:
@@ -49,17 +49,20 @@ def test_generate_pdf(env):
|
||||
with pytest.raises(OrderError):
|
||||
e.render({
|
||||
'items': [shirt.pk],
|
||||
'rendering': 'one',
|
||||
'include_pending': False
|
||||
})
|
||||
|
||||
with pytest.raises(OrderError):
|
||||
e.render({
|
||||
'items': [],
|
||||
'rendering': 'one',
|
||||
'include_pending': True
|
||||
})
|
||||
|
||||
fname, ftype, buf = e.render({
|
||||
'items': [shirt.pk],
|
||||
'rendering': 'one',
|
||||
'include_pending': True
|
||||
})
|
||||
assert ftype == 'application/pdf'
|
||||
|
||||
Reference in New Issue
Block a user