diff options
author | Mark Wells <mark@freeside.biz> | 2015-11-12 16:49:39 -0800 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2015-11-12 16:52:51 -0800 |
commit | b5a9068479a38c2b901b1954a57c51f43e84be2d (patch) | |
tree | c8adc2638066a666a918f6e52ef1e0a5bd20606d /FS/t | |
parent | 979f2b7488f2399fb2e4c7c98a57536b5cf1bff7 (diff) |
limit password reuse, core and svc_acct, #29354
Diffstat (limited to 'FS/t')
-rw-r--r-- | FS/t/password_history.t | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/FS/t/password_history.t b/FS/t/password_history.t new file mode 100644 index 000000000..b7a05fd9f --- /dev/null +++ b/FS/t/password_history.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::password_history; +$loaded=1; +print "ok 1\n"; |