1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

s4-python: Add more module docstrings.

This commit is contained in:
Jelmer Vernooij 2010-12-05 17:00:45 +01:00
parent 52d64c53b9
commit 71671a84bb
10 changed files with 23 additions and 3 deletions

View File

@ -0,0 +1 @@
"""Blackbox tests. """

View File

@ -1,9 +1,12 @@
#!/usr/bin/python
# Blackbox tests for masktest
# Copyright (C) 2008 Andrew Tridgell
# Copyright (C) 2008 Andrew Bartlett
# Blackbox tests for ndrdump
# Copyright (C) 2008 Andrew Tridgell <tridge@samba.org>
# Copyright (C) 2008 Andrew Bartlett <abartlet@samba.org>
# Copyright (C) 2010 Jelmer Vernooij <jelmer@samba.org>
# based on test_smbclient.sh
"""Blackbox tests for ndrdump."""
import os
from samba.tests import BlackboxTestCase

View File

@ -17,4 +17,5 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""Tests for the DCE/RPC Python bindings."""

View File

@ -18,6 +18,8 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
"""Tests for samba.dcerpc.bare."""
from samba.dcerpc import ClientConnection
import samba.tests

View File

@ -17,6 +17,8 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
"""Tests for samba.dcerpc.misc."""
from samba.dcerpc import misc
import samba.tests

View File

@ -17,6 +17,8 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
"""Tests for samba.dcerpc.registry."""
from samba.dcerpc import winreg
from samba.tests import RpcInterfaceTestCase

View File

@ -10,6 +10,8 @@
#
# trial samba.tests.dcerpc.rpc_talloc
"""Tests for the talloc handling in the generated Python DCE/RPC bindings."""
import sys
sys.path.insert(0, "bin/python")

View File

@ -17,6 +17,8 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
"""Tests for samba.dceprc.rpcecho."""
from samba.dcerpc import echo
from samba.ndr import ndr_pack, ndr_unpack
from samba.tests import RpcInterfaceTestCase, TestCase

View File

@ -18,6 +18,8 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
"""Tests for samba.dcerpc.sam."""
from samba.dcerpc import samr, security
from samba.tests import RpcInterfaceTestCase

View File

@ -17,6 +17,9 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
"""Tests for samba.dcerpc.unixinfo."""
from samba.dcerpc import unixinfo
from samba.tests import RpcInterfaceTestCase