Skip to content

Commit

Permalink
Adding test for verification of collapsed class if it is in correct c…
Browse files Browse the repository at this point in the history
…olumn
  • Loading branch information
volkan-aslan committed Apr 11, 2024
1 parent 59e2667 commit 353d86e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions testing/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -870,6 +870,24 @@ def test_CCC():
for row, expected in zip(result, order):
assert_that(row.string).contains(expected)

def test_collapsed_class_when_results_table_order_changed(self, pytester):
pytester.makeconftest(
"""
def pytest_html_results_table_header(cells):
cells.append(cells.pop(0))
def pytest_html_results_table_row(report, cells):
cells.append(cells.pop(0))
"""
)
pytester.makepyfile("def test_pass(): pass")
page = run(pytester)
assert_results(page, passed=1)

assert_that(
get_text(page, "#results-table td[class='col-result collapsed']")
).is_true()


class TestLogCapturing:
LOG_LINE_REGEX = r"\s+this is {}"
Expand Down

0 comments on commit 353d86e

Please sign in to comment.