blob: 4fd3822e8f2b273f0adf022872d21c21f0fa2b10 (
plain)
1
2
3
4
5
6
7
8
|
from k5test import *
# Test that KDC send and recv hooks work correctly.
realm = K5Realm(create_host=False, get_creds=False)
realm.run(['./hooks', realm.user_princ, password('user')])
realm.stop()
success('send and recv hook tests')
|