qutebrowser/tests/unit/completion
Luca Benci 249164eb9b Fix test_quickcomplete_flicker
The test needed to be fixed because of how the completer behaviour
changed.

Before:
completer always scheduled a completion update on selection changed,
but the updates themselves were ignored if not needed.

Now:
completer only schedules completion updates when actually needed, but
never ignores a completion update.

So, before it was correct to check whether `set_model` was called, now
we must check if the completion was actually scheduled. This can be
done by checking the parameters with which `_change_completed_part`
is called, since a completion is scheduled only when `immediate=True`
2017-10-27 22:25:41 +02:00
..
test_completer.py Fix test_quickcomplete_flicker 2017-10-27 22:25:41 +02:00
test_completionmodel.py Use .assert_not_called() for mocks 2017-09-22 19:58:38 +02:00
test_completionwidget.py Use .assert_not_called() for mocks 2017-09-22 19:58:38 +02:00
test_histcategory.py Adjust test_histcategory for NOT NULL constraints 2017-10-03 10:28:36 +02:00
test_listcategory.py Don't perform alphabetical sort in listcategory. 2017-08-06 10:00:18 -04:00
test_models.py Add test for window completion 2017-10-11 17:18:13 +11:00