summaryrefslogtreecommitdiffstats
path: root/test/t/test_pkg_config.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/t/test_pkg_config.py')
-rw-r--r--test/t/test_pkg_config.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/t/test_pkg_config.py b/test/t/test_pkg_config.py
index 81e02ca..14f9c86 100644
--- a/test/t/test_pkg_config.py
+++ b/test/t/test_pkg_config.py
@@ -1,3 +1,5 @@
+import os
+
import pytest
@@ -10,3 +12,11 @@ class TestPkgConfig:
@pytest.mark.complete("pkg-config -", require_cmd=True)
def test_2(self, completion):
assert completion
+
+ @pytest.mark.complete(
+ "pkg-config %s/bash-completion.pc --variable="
+ % os.getenv("ABS_TOP_BUILDDIR", "../.."),
+ require_cmd=True,
+ )
+ def test_variable(self, completion):
+ assert "completionsdir" in completion