From a88a83765c5749d18c24ff6daeff4cdbb534f0f6 Mon Sep 17 00:00:00 2001 From: Jason Rosenzweig Date: Fri, 4 Jun 2021 01:26:41 +0800 Subject: Forgot to delete commented out code --- tests/unit/mainwindow/test_prompt.py | 36 ------------------------------------ 1 file changed, 36 deletions(-) (limited to 'tests') diff --git a/tests/unit/mainwindow/test_prompt.py b/tests/unit/mainwindow/test_prompt.py index 558eaa89b..337de36d6 100644 --- a/tests/unit/mainwindow/test_prompt.py +++ b/tests/unit/mainwindow/test_prompt.py @@ -122,42 +122,6 @@ class TestFileCompletion: assert visible.sort() == expected - - # # Make sure all directories are shown - # num_rows = prompt._file_model.rowCount(prompt._root_index) - # visible = [] - # for row in range(num_rows): - # parent = prompt._file_model.index(os.path.basename(prompt._lineedit.text())) - # index = prompt._file_model.index(row, 0, parent) - # if prompt._file_view.isRowHidden(index.row(), index.parent()): - # visible.append(index.data()) - - # assert visible.sort() == ['bar', 'foo', 'bat'].sort() - - # # Only foo should be completed with f - # qtbot.keyPress(prompt._lineedit, Qt.Key_F) - # num_rows = prompt._file_model.rowCount(prompt._root_index) - # visible = [] - # for row in range(num_rows): - # parent = prompt._file_model.index(os.path.basename(prompt._lineedit.text())) - # index = prompt._file_model.index(row, 0, parent) - # if prompt._file_view.isRowHidden(index.row(), index.parent()): - # visible.append(index.data()) - - # assert visible.sort() == ['foo'].sort() - - # # bat and bar should show up with a typed - # qtbot.keyPress(prompt._lineedit, Qt.Key_Backspace) - # qtbot.keyPress(prompt._lineedit, Qt.Key_A) - # num_rows = prompt._file_model.rowCount(prompt._root_index) - # visible = [] - # for row in range(num_rows): - # index = prompt._file_model.index(row, 0, prompt._file_model.index(os.path.basename(prompt._lineedit.text()))) - # if prompt._file_view.isRowHidden(index.row(), index.parent()): - # visible.append(index.data()) - - # assert visible.sort() == ['bar', 'bat'].sort() - @pytest.mark.linux def test_root_path(self, get_prompt): """With / as path, show root contents.""" -- cgit v1.2.3-54-g00ecf