6b5548ffd2
$ gem install hoe To get there the following has been done: * Adhere to hoe naming conventions. * Migrate and update tests. * Consolidate and update documentation. * Prepare History.txt for release. * And I probably forgot something...
18 lines
353 B
Ruby
18 lines
353 B
Ruby
# $Id: testpsw.rb 72 2006-04-24 21:58:14Z blackhedd $
|
|
|
|
require 'common'
|
|
|
|
class TestPassword < Test::Unit::TestCase
|
|
|
|
def test_psw
|
|
assert_equal(
|
|
"{MD5}xq8jwrcfibi0sZdZYNkSng==",
|
|
Net::LDAP::Password.generate( :md5, "cashflow" ))
|
|
|
|
assert_equal(
|
|
"{SHA}YE4eGkN4BvwNN1f5R7CZz0kFn14=",
|
|
Net::LDAP::Password.generate( :sha, "cashflow" ))
|
|
end
|
|
|
|
end
|