aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtests/pypamtest_test.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/pypamtest_test.py b/tests/pypamtest_test.py
index 030f01a..c4534bb 100755
--- a/tests/pypamtest_test.py
+++ b/tests/pypamtest_test.py
@@ -120,6 +120,11 @@ class PyPamTestRunTest(unittest.TestCase):
tc = pypamtest.TestCase(pypamtest.PAMTEST_AUTHENTICATE, expected_rv=7) # PAM_AUTH_ERR
res = pypamtest.run_pamtest("neo", "matrix_py", [tc], [ neo_password ])
+ def test_run_chatty_auth(self):
+ neo_password = "secret"
+ tc = pypamtest.TestCase(pypamtest.PAMTEST_AUTHENTICATE)
+ res = pypamtest.run_pamtest("neo", "chatty", [tc], [ neo_password ])
+
def test_repr(self):
tc = pypamtest.TestCase(pypamtest.PAMTEST_CHAUTHTOK, 1, 2)
r = repr(tc)