mirror of
https://github.com/kennethreitz/tablib.git
synced 2026-06-05 15:00:19 +00:00
Fix NameError: name '_get_column_widths' is not defined (#433)
* Fix NameError: name '_get_column_widths' is not defined * Also test ReSTFormat.export_set
This commit is contained in:
committed by
GitHub
parent
357a5594c5
commit
57a535f577
@@ -660,6 +660,28 @@ class RSTTests(BaseTestCase):
|
||||
'========== ========= ==='
|
||||
)
|
||||
|
||||
def test_rst_export_set(self):
|
||||
# Arrange
|
||||
data = tablib.Dataset()
|
||||
data.append(self.john)
|
||||
data.headers = self.headers
|
||||
fmt = registry.get_format("rst")
|
||||
|
||||
# Act
|
||||
out1 = fmt.export_set(data)
|
||||
out2 = fmt.export_set_as_simple_table(data)
|
||||
|
||||
# Assert
|
||||
self.assertEqual(out1, out2)
|
||||
self.assertEqual(
|
||||
out1,
|
||||
"========== ========= ===\n"
|
||||
"first_name last_name gpa\n"
|
||||
"========== ========= ===\n"
|
||||
"John Adams 90 \n"
|
||||
"========== ========= ===",
|
||||
)
|
||||
|
||||
|
||||
class CSVTests(BaseTestCase):
|
||||
def test_csv_format_detect(self):
|
||||
|
||||
Reference in New Issue
Block a user