Test: Added error handling test for column/label mismatch
This commit is contained in:
@@ -36,7 +36,6 @@ from basetest import Task, TestCase
|
|||||||
|
|
||||||
|
|
||||||
class TestCustomReports(TestCase):
|
class TestCustomReports(TestCase):
|
||||||
|
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
"""Executed before each test in the class"""
|
"""Executed before each test in the class"""
|
||||||
self.t = Task()
|
self.t = Task()
|
||||||
@@ -66,6 +65,16 @@ class TestCustomReports(TestCase):
|
|||||||
self.assertIn("ID", out)
|
self.assertIn("ID", out)
|
||||||
self.assertIn("DESCRIPTION", out)
|
self.assertIn("DESCRIPTION", out)
|
||||||
|
|
||||||
|
class TestCustomErrorHandling(TestCase):
|
||||||
|
def setUp(self):
|
||||||
|
self.t = Task()
|
||||||
|
|
||||||
|
def test_size_mismatch(self):
|
||||||
|
self.t.config("report.foo.columns", "id,description")
|
||||||
|
self.t.config("report.foo.labels", "id")
|
||||||
|
code, out, err = self.t.runError("foo")
|
||||||
|
self.assertIn("There are different numbers of columns and labels for report 'foo'.", err)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
from simpletap import TAPTestRunner
|
from simpletap import TAPTestRunner
|
||||||
|
|||||||
Reference in New Issue
Block a user