From 5732da2af736c40cf693354485446ab4867ecb4d Mon Sep 17 00:00:00 2001 From: "Gabriel F. T. Gomes" Date: Wed, 7 Aug 2019 09:17:13 -0300 Subject: New upstream version 2.9 --- test/t/test_xgamma.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 test/t/test_xgamma.py (limited to 'test/t/test_xgamma.py') diff --git a/test/t/test_xgamma.py b/test/t/test_xgamma.py new file mode 100644 index 00000000..56c9440d --- /dev/null +++ b/test/t/test_xgamma.py @@ -0,0 +1,12 @@ +import pytest + + +class TestXgamma: + @pytest.mark.complete("xgamma -") + def test_1(self, completion): + assert completion + + @pytest.mark.complete("xgamma -gam") + def test_2(self, completion): + assert completion == "-gamma" + assert completion.endswith(" ") -- cgit v1.2.1