Skip to content

Commit 7fc14e3

Browse files
committed
Add several tests
1 parent e23d0a9 commit 7fc14e3

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

tests/test_validate.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6640,10 +6640,18 @@ def test_get_step_report_no_fail(tbl_type):
66406640
for i in range(1, 18):
66416641
assert isinstance(validation.get_step_report(i=i, limit=None), GT.GT)
66426642

6643-
# Test with a custom header
6643+
# Test with a custom header using static text
66446644
for i in range(1, 18):
66456645
assert isinstance(validation.get_step_report(i=i, header="Custom header"), GT.GT)
66466646

6647+
# Test with a custom header using templating elements
6648+
for i in range(1, 18):
6649+
assert isinstance(validation.get_step_report(i=i, header="Title {title} {details}"), GT.GT)
6650+
6651+
# Test with header removal
6652+
for i in range(1, 18):
6653+
assert isinstance(validation.get_step_report(i=i, header=None), GT.GT)
6654+
66476655
#
66486656
# Tests with a subset of columns
66496657
#

0 commit comments

Comments
 (0)