Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Adding test for verification of collapsed class if it is in correct c…
…olumn
  • Loading branch information
volkan-aslan committed Apr 11, 2024
commit 353d86e0e8b602969cf3efd690b081fafe2ba9ad
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