mirror of
https://github.com/datafolklabs/cement.git
synced 2026-02-06 11:16:46 +00:00
16 lines
309 B
Python
16 lines
309 B
Python
|
|
|
|
from cement.utils.test import TestApp
|
|
|
|
|
|
class TabulateApp(TestApp):
|
|
class Meta:
|
|
extensions = ['tabulate']
|
|
output_handler = 'tabulate'
|
|
|
|
|
|
def test_tabulate():
|
|
with TabulateApp() as app:
|
|
res = app.render([['John', 'Doe']], headers=['FOO', 'BAR'])
|
|
assert res.find('FOO')
|