OpenLDAP and Apache

Hello!
I'm starting to panic here!
I'm trying to authorize Subversion (via apache) users at my company here via LDAP.
Sure everything works when just authorizing users with require valid-user
But! That is not what I'm looking for, I wish to Authorize by membership in specifik groups...

This is how my structure looks:
LDAP:
The svn groups are under:
ou=svn,ou=group,dc=company,dc=com
The groups are:
boss and test

The group svn has objectClass's top and organizationalUnit
The other two groups are top and posixGroup, they got gid 1012 and 1015
and I'm member of these two.

Apache:
I've got a subversion config with the ldap url etc:

<Location /svn/test>
DAV svn
SVNPath /data/svn/test
AuthType Basic
AuthName "Test Subversion Repository"
AuthLDAPAuthoritative on
AuthLDAPEnabled on
AuthLDAPURL "ldap://ldap.company.com/ou=people,dc=company,dc=com?uid"
require group cn=test
require valid-user
</Location>

if I run with this it just swollows it even if I set require group to cn=mjew which aint a valid group at all..

So this is what I want:
I want apache to look for the user, and find out if for example david is a member in cn=test,ou=svn,ou=group, then let the user use the repository.

So what is it that I do wrong? does it have anything with Ldap Bind to do?