Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschoen <schoen@loyalty.org>2019-02-26 02:38:30 +0300
committerGitHub <noreply@github.com>2019-02-26 02:38:30 +0300
commitf5b23361bd3691b5480bee648a3afdb43060dd92 (patch)
treee6eb90bd7df06d840a73f3e4a8afa208ee9ade7a
parent401045be89d241bad01ebb8e933bdb83f836bc20 (diff)
parentf105aedc9258d7a1de55b7de56802535d3b1b4dc (diff)
Merge pull request #6791 from certbot/no-manual-tests
Remove display.py.
-rw-r--r--tests/display.py22
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/display.py b/tests/display.py
deleted file mode 100644
index 1f548e33d..000000000
--- a/tests/display.py
+++ /dev/null
@@ -1,22 +0,0 @@
-"""Manual test of display functions."""
-import sys
-
-from certbot.display import util
-from certbot.tests.display import util_test
-
-
-def test_visual(displayer, choices):
- """Visually test all of the display functions."""
- displayer.notification("Random notification!")
- displayer.menu("Question?", choices,
- ok_label="O", cancel_label="Can", help_label="??")
- displayer.menu("Question?", [choice[1] for choice in choices],
- ok_label="O", cancel_label="Can", help_label="??")
- displayer.input("Input Message")
- displayer.yesno("YesNo Message", yes_label="Yessir", no_label="Nosir")
- displayer.checklist("Checklist Message", [choice[0] for choice in choices])
-
-
-if __name__ == "__main__":
- displayer = util.FileDisplay(sys.stdout, False)
- test_visual(displayer, util_test.CHOICES)