README.md in devise_ldap_authenticatable-0.4.9 vs README.md in devise_ldap_authenticatable-0.4.10
- old
+ new
@@ -138,21 +138,21 @@
All unit and functional tests are part of a sample rails application under test/rails_app and requires a working LDAP sever.
Build / Start Instructions for Test LDAP Server
-----------------------------------------------
-Make sure that directories test/ldap/openldap-data and test/ldap/openldap-data/run exist.
+These instructions require the current directory context to be the `test/ldap` directory relative to the project root.
- 1. To start the server, run `./run_server.sh`
+ 1. To start the server, run `./run-server.sh`
2. Add the basic structure: `ldapadd -x -h localhost -p 3389 -x -D "cn=admin,dc=test,dc=com" -w secret -f base.ldif`
* this creates the users / passwords:
* cn=admin,dc=test,com / secret
* cn=example.user@test.com,ou=people,dc=test,dc=com / secret
3. You should now be able to run the tests in test/rails_app by running: `rake`
_For a LDAP server running SSL_
- 1. To start the server, run: `./run_server.sh --ssl`
+ 1. To start the server, run: `./run-server.sh --ssl`
2. Add the basic structure: `ldapadd -x -H ldaps://localhost:3389 -x -D "cn=admin,dc=test,dc=com" -w secret -f base.ldif`
* this creates the users / passwords:
* cn=admin,dc=test,com / secret
* cn=example.user@test.com,ou=people,dc=test,dc=com / secret
3. You should now be able to run the tests in test/rails_app by running: `LDAP_SSL=true rake`