Revert " Implement feature new format: Cli. Generate adapter for tabulate. This close issue #340"

This reverts commit c26159d48f.
The patch was NOT ready to be merged.
This commit is contained in:
Claude Paroz
2019-10-30 14:24:07 +01:00
parent c26159d48f
commit d21bd10908
5 changed files with 1 additions and 37 deletions
-6
View File
@@ -1214,12 +1214,6 @@ class JiraTests(BaseTestCase):
def test_jira_export_empty_dataset(self):
self.assertTrue(tablib.Dataset().jira is not None)
class CliTests(BaseTestCase):
def test_cli_export(self):
self.assertEqual('a b c', tablib.Dataset(['a', 'b', 'c']).cli)
def test_cli_export_github(self):
self.assertEqual('|---|---|---|\n| a | b | c |', tablib.Dataset(['a','b','c']).export('cli',tablefmt='github'))
class DocTests(unittest.TestCase):