File: test_press_any_key_to_continue.py

package info (click to toggle)
python-questionary 2.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 960 kB
  • sloc: python: 3,917; makefile: 66
file content (11 lines) | stat: -rw-r--r-- 268 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
# -*- coding: utf-8 -*-

from tests.utils import feed_cli_with_input


def test_press_any_key_to_continue_default_message():
    message = None
    text = "c"
    result, cli = feed_cli_with_input("press_any_key_to_continue", message, text)

    assert result is None