mockldap 0.3.0-8 source package in Ubuntu

Changelog

mockldap (0.3.0-8) unstable; urgency=medium

  * Team upload.
  * remove python3-mock build-dep: it's hybridized
  * use new dh-sequence-python3
  * set Rules-Requires-Root: no
  * add runtime dependency on python3-ldap

 -- Alexandre Detiste <email address hidden>  Wed, 10 Apr 2024 19:53:31 +0200

Upload details

Uploaded by:
Debian Python Team
Uploaded to:
Sid
Original maintainer:
Debian Python Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc

Builds

Oracular: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
mockldap_0.3.0-8.dsc 2.1 KiB 49b36462780ef41280d1d2ec135727ed18985b45d6ae5ef2bfeab388aeed238f
mockldap_0.3.0.orig.tar.gz 18.5 KiB 8f988897d6f0e77c7ae2b067afc22a62b3327895620d7643e66f37cedafc8c3a
mockldap_0.3.0-8.debian.tar.xz 11.6 KiB fc5a624380d8f7cc7a08b9c81cf2ca49e94f26fc4cbfc8bcaaaa7d4c93a51e35

Available diffs

No changes file available.

Binary packages built by this source

python-mockldap-doc: simple mock implementation of python-ldap (Documentation)

 This project provides a mock replacement for python-ldap. It’s useful for any
 project that would like to write unit tests against LDAP code without relying
 on a running LDAP server.
 .
 The goal of mockldap is to provide a mock instance of LDAPObject in response to
 any call to ldap.initialize. In the general case, you would register return
 values for all LDAPObject calls that you expect the code under test to make.
 Your assertions would then verify that the tested code behaved correctly given
 this set of return values from the LDAP APIs.
 .
 As a convenience, the mock LDAPObject isn’t just a dumb mock object. The
 typical way to use mockldap is to provide some static directory content and
 then let LDAPObject generate real return values. This will only work for simple
 LDAP operations–this obviously isn’t a complete Python LDAP server
 implementation–but those simple operations tend to cover a lot of cases.
 .
 This package contains the documentation.

python3-mockldap: simple mock implementation of python-ldap (Python3 version)

 This project provides a mock replacement for python-ldap. It’s useful for any
 project that would like to write unit tests against LDAP code without relying
 on a running LDAP server.
 .
 The goal of mockldap is to provide a mock instance of LDAPObject in response to
 any call to ldap.initialize. In the general case, you would register return
 values for all LDAPObject calls that you expect the code under test to make.
 Your assertions would then verify that the tested code behaved correctly given
 this set of return values from the LDAP APIs.
 .
 As a convenience, the mock LDAPObject isn’t just a dumb mock object. The
 typical way to use mockldap is to provide some static directory content and
 then let LDAPObject generate real return values. This will only work for simple
 LDAP operations–this obviously isn’t a complete Python LDAP server
 implementation–but those simple operations tend to cover a lot of cases.
 .
 This package contains the Python 3 version of the library.